Add documentation on placing tiles.
[Tsunagari.git] / src / Makefile.common
blob6ad72e4dfb612372d5e3b81fd4b44890f5f9dfa0
1 # Warning flags to enable.
2 WFLAGS += -Wall -Wextra -Wconversion -Wdeprecated -Winvalid-pch
3 WFLAGS += -Wno-long-long # Disable warnings in Python code.
5 # Compiler and linker flags.
6 CXXFLAGS += -DUSE_PRECOMPILED_HEADERS $(BLDCFLAGS) -pipe -pedantic $(WFLAGS) \
7         $(shell pkg-config --cflags python-2.7) $(shell xml2-config --cflags)
8 LDFLAGS += $(BLDLDFLAGS) -lboost_program_options -lboost_python -lgosu \
9         -lphysfs $(shell pkg-config --libs python-2.7) $(shell xml2-config --libs)