summaryrefslogtreecommitdiff
path: root/Servers/LookupServer
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-21 04:09:39 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-21 04:09:39 +0200
commit57da00b731fd060c051bb5cdff5cdf507ece81bb (patch)
tree0e64b6c2fc8e3169521a3afa76b9919212a3cd84 /Servers/LookupServer
parent74b94da6fa74b006c5059929443449298d490d87 (diff)
downloadserenity-57da00b731fd060c051bb5cdff5cdf507ece81bb.zip
Include Makefile.common in all other Makefiles.
Diffstat (limited to 'Servers/LookupServer')
-rw-r--r--Servers/LookupServer/Makefile16
1 files changed, 3 insertions, 13 deletions
diff --git a/Servers/LookupServer/Makefile b/Servers/LookupServer/Makefile
index 2986a501cd..2833309fbc 100644
--- a/Servers/LookupServer/Makefile
+++ b/Servers/LookupServer/Makefile
@@ -1,22 +1,12 @@
+include ../../Makefile.common
+
LOOKUPSERVER_OBJS = \
main.o
APP = LookupServer
OBJS = $(LOOKUPSERVER_OBJS)
-STANDARD_FLAGS = -std=c++17
-WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
-FLAVOR_FLAGS = -fno-exceptions -fno-rtti
-OPTIMIZATION_FLAGS = -Os
-INCLUDE_FLAGS = -I.. -I../.. -I. -I../../LibC
-LDFLAGS = -L../../LibC
-
-DEFINES = -DSANITIZE_PTRS -DUSERLAND
-
-CXXFLAGS = -MMD -MP $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(FLAVOR_FLAGS) $(STANDARD_FLAGS) $(INCLUDE_FLAGS) $(DEFINES)
-CXX = i686-pc-serenity-g++
-LD = i686-pc-serenity-g++
-AR = i686-pc-serenity-ar
+DEFINES += -DUSERLAND
all: $(APP)