1 ############################################################
2 # Tsunagari Tile Engine primary source Makefile (gnu make) #
3 ############################################################
5 ### --- VARIABLES SECTION --- ###
7 # Warning flags to enable.
8 WFLAGS
= -Wall
-Wextra
-Wconversion
10 # Libraries to include.
11 LIBS
= -lgosu
-lzip
-lboost_program_options
`xml2-config --libs`
13 # Compiler and linker flags.
14 CXXFLAGS
= -g
-pedantic
-ansi
$(WFLAGS
) `xml2-config --cflags`
17 # Compiler to use. (Suggested: "g++" or "clang")
20 # Name of testing world.
21 TESTWORLD
= babysfirst.world
23 ### --- MAIN SECTION --- ###
25 all: tsunagari
$(TESTWORLD
)
27 tsunagari
: area.o cmd.o common.o entity.o log.o main.o player.o resourcer.o sprite.o window.o world.o
28 $(CXX
) -o tsunagari
*.o
$(LDFLAGS
)
31 cd
$(basename $@
) && zip
-0 ..
/$@
*
38 $(RM
) tsunagari
*.o
$(TESTWORLD
) && $(RM
) -r ..
/doc
/html