summaryrefslogtreecommitdiff
path: root/Applications/Taskbar/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-20 12:58:02 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-20 12:58:49 +0200
commit301a269ca0361ba5fa94ad143d9f35049076f618 (patch)
tree9a1b4b1b20c5b71cbee5b45d6220e5b5eeb7e0b4 /Applications/Taskbar/Makefile
parent6aead8998ac1a0858265385dd0b6300973c1e99d (diff)
downloadserenity-301a269ca0361ba5fa94ad143d9f35049076f618.zip
Get rid of SERENITY macro since the compiler already defines __serenity__
This makes it a bit easier to use AK templates out-of-tree.
Diffstat (limited to 'Applications/Taskbar/Makefile')
-rw-r--r--Applications/Taskbar/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Taskbar/Makefile b/Applications/Taskbar/Makefile
index 50277448bf..0c412c3039 100644
--- a/Applications/Taskbar/Makefile
+++ b/Applications/Taskbar/Makefile
@@ -11,7 +11,7 @@ FLAVOR_FLAGS = -fno-exceptions -fno-rtti
OPTIMIZATION_FLAGS = -Os
INCLUDE_FLAGS = -I../.. -I../../Servers -I. -I../../LibC
-DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
+DEFINES = -DSANITIZE_PTRS -DUSERLAND
CXXFLAGS = -MMD -MP $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(FLAVOR_FLAGS) $(STANDARD_FLAGS) $(INCLUDE_FLAGS) $(DEFINES)
CXX = i686-pc-serenity-g++