mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-26 22:57:00 +02:00
0c3e88226f
- gcc set to c++0x mode - most of gcc warnings fixed - replaced boost::assign with initialization lists (if available in compiler) - new cheat code: vcmiarmenelos - build everything - updated linux readme - minor fixes, applied patch for #98
14 lines
373 B
Makefile
14 lines
373 B
Makefile
vcmiaidir = $(VCMI_AI_LIBS_DIR)
|
|
BUILT_SOURCES = StdInc.h.gch
|
|
StdInc.h.gch: StdInc.h
|
|
$(CXXCOMPILE) -DVCMI_DLL -fPIC -c $<
|
|
|
|
vcmiai_LTLIBRARIES = libVCAI.la
|
|
libVCAI_la_LIBADD = $(top_builddir)/lib/libvcmi.la
|
|
libVCAI_la_CXXFLAGS = -DVCMI_DLL
|
|
libVCAI_la_LDFLAGS = -L$(top_builddir)/lib -module -avoid-version
|
|
libVCAI_la_SOURCES = \
|
|
main.cpp \
|
|
VCAI.cpp \
|
|
VCAI.h
|