The submodules and common/ compiles

Please note that there are duplicate copies of vector2.hpp and
bounding_box.hpp
This commit is contained in:
2016-11-26 16:16:37 +11:00
parent baf9492026
commit 1826baa48d
6 changed files with 196 additions and 10 deletions
+6 -4
View File
@@ -7,10 +7,12 @@
OUTDIR=out
BINDIR=bin
all: $(OUTDIR) binary
all: $(OUTDIR) dll
$(MAKE) -C TurtleGUI
$(MAKE) -C TurtleMap
$(MAKE) -C common
$(MAKE) -C server
$(MAKE) -C client
# $(MAKE) -C server
# $(MAKE) -C client
debug: export CXXFLAGS+=-g
debug: clean all
@@ -27,7 +29,7 @@ else ifeq ($(shell uname), Linux)
tar -C $(OUTDIR) -zcvf Tortuga-linux.tar client server ../rsc ../copyright.txt ../instructions.txt
endif
binary: $(OUTDIR)
dll: $(OUTDIR)
ifeq ($(OS),Windows_NT)
xcopy /Y $(BINDIR)\\*.dll $(OUTDIR)
endif