summaryrefslogtreecommitdiff
path: root/LibC
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 /LibC
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 'LibC')
-rw-r--r--LibC/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibC/Makefile b/LibC/Makefile
index f6c209cfee..6986aa6a4a 100644
--- a/LibC/Makefile
+++ b/LibC/Makefile
@@ -55,7 +55,7 @@ FLAVOR_FLAGS = -fno-exceptions -fno-rtti -fno-sized-deallocation
OPTIMIZATION_FLAGS = -Os
INCLUDE_FLAGS = -I.. -I.
-DEFINES = -DSERENITY -DUSERLAND -DSANITIZE_PTRS
+DEFINES = -DUSERLAND -DSANITIZE_PTRS
CXXFLAGS = -MMD -MP $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(FLAVOR_FLAGS) $(STANDARD_FLAGS) $(INCLUDE_FLAGS) $(DEFINES)
CXX = i686-pc-serenity-g++