stratgame
diff Makefile @ 3:8d95187cb3ee
foo
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 23 May 2012 17:10:46 +0300 |
parents | 369b51c9e4a8 |
children |
line diff
1.1 --- a/Makefile Wed May 23 07:25:43 2012 +0300 1.2 +++ b/Makefile Wed May 23 17:10:46 2012 +0300 1.3 @@ -4,11 +4,12 @@ 1.4 dep = $(obj:.o=.d) 1.5 bin = strat 1.6 1.7 -incdir = -Isrc -Ilevel/src -Icommon/src 1.8 +incdir = -Isrc -Igfx/src -Ilevel/src -Icommon/src 1.9 1.10 +libgfx = gfx/libgfx.a 1.11 liblevel = level/liblevel.a 1.12 libcommon = common/libcommon.a 1.13 -slibs = $(liblevel) $(libcommon) 1.14 +slibs = $(libgfx) $(liblevel) $(libcommon) 1.15 1.16 CFLAGS = -pedantic -Wall -g $(incdir) 1.17 CXXFLAGS = -std=c++0x $(CFLAGS)