summaryrefslogtreecommitdiff
path: root/Games/Minesweeper/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Games/Minesweeper/Makefile')
-rw-r--r--Games/Minesweeper/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/Games/Minesweeper/Makefile b/Games/Minesweeper/Makefile
new file mode 100644
index 0000000000..c074a823ac
--- /dev/null
+++ b/Games/Minesweeper/Makefile
@@ -0,0 +1,32 @@
+OBJS = \
+ Field.o \
+ main.o
+
+APP = Minesweeper
+
+STANDARD_FLAGS = -std=c++17 -Wno-sized-deallocation
+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../../LibC
+
+DEFINES = -DSERENITY -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++
+LDFLAGS = -L../../LibC -L../../LibCore -L../../LibGUI
+
+all: $(APP)
+
+$(APP): $(OBJS)
+ $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -lcore -lc
+
+.cpp.o:
+ @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
+
+-include $(OBJS:%.o=%.d)
+
+clean:
+ @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+