mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-26 22:57:00 +02:00
a89895452a
- (linux) moved AI libraries to /lib/vcmi/AI/lib*, ERM lib to /lib/vcmi/Scripting/* - gcc compile and warnings fixes
11 lines
258 B
Makefile
11 lines
258 B
Makefile
vcmiaidir = $(VCMI_AI_LIBS_DIR)
|
|
|
|
vcmiai_LTLIBRARIES = libEmptyAI.la
|
|
libEmptyAI_la_LIBADD = $(top_builddir)/lib/libvcmi.la
|
|
libEmptyAI_la_LDFLAGS = -L$(top_builddir)/lib -module
|
|
libEmptyAI_la_SOURCES = \
|
|
CEmptyAI.cpp \
|
|
CEmptyAI.h \
|
|
exp_funcs.cpp
|
|
|