Moved common files (such as Codebase files) into their own directory

This commit is contained in:
Kayne Ruse
2013-05-19 05:50:31 +10:00
parent b3691a341c
commit 000e3707ed
26 changed files with 43 additions and 332 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
#config
CXXFLAGS+=-std=c++11 -DDEBUG
LIB=-lmingw32 -lSDL_net -lSDLmain -lSDL -lwsock32 -liphlpapi
INCLUDES=../common
CXXFLAGS+=-std=c++11 -DDEBUG $(addprefix -I,$(INCLUDES))
LIB=../common/out/common.a -lmingw32 -lSDL_net -lSDLmain -lSDL -lwsock32 -liphlpapi
#source
SRC=$(filter-out unit.cpp main.cpp, $(wildcard *.cpp))