diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-13 03:08:16 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-13 03:08:16 +0200 |
commit | a90e218c7114e85d28ab53cb33327904fe8f40e9 (patch) | |
tree | 03f0eea01c4f51fa8f61818b8ab493664db8b1aa /Games/Minesweeper/Makefile | |
parent | c06a3bdeb4610b7edb7944cdf197927127d41044 (diff) | |
download | serenity-a90e218c7114e85d28ab53cb33327904fe8f40e9.zip |
Minesweeper: Start working on a simple minesweeper game. :^)
Diffstat (limited to 'Games/Minesweeper/Makefile')
-rw-r--r-- | Games/Minesweeper/Makefile | 32 |
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 + |