diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-20 12:58:02 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-20 12:58:49 +0200 |
commit | 301a269ca0361ba5fa94ad143d9f35049076f618 (patch) | |
tree | 9a1b4b1b20c5b71cbee5b45d6220e5b5eeb7e0b4 /Applications/Terminal | |
parent | 6aead8998ac1a0858265385dd0b6300973c1e99d (diff) | |
download | serenity-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/Terminal')
-rw-r--r-- | Applications/Terminal/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Terminal/Makefile b/Applications/Terminal/Makefile index f5d0a2ee47..fddf7f11bb 100644 --- a/Applications/Terminal/Makefile +++ b/Applications/Terminal/Makefile @@ -10,7 +10,7 @@ FLAVOR_FLAGS = -fno-exceptions -fno-rtti OPTIMIZATION_FLAGS = -Os INCLUDE_FLAGS = -I../.. -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++ |