From a90e218c7114e85d28ab53cb33327904fe8f40e9 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 13 Apr 2019 03:08:16 +0200 Subject: Minesweeper: Start working on a simple minesweeper game. :^) --- Games/Minesweeper/Makefile | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Games/Minesweeper/Makefile (limited to 'Games/Minesweeper/Makefile') 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 + -- cgit v1.2.3