mirror of
https://github.com/vcmi/vcmi.git
synced 2025-03-21 21:17:49 +02:00
Support for new source files.
This commit is contained in:
parent
a8ebc0fb5b
commit
c1eea72fce
@ -2,7 +2,9 @@ pkglib_LTLIBRARIES = GeniusAI.la
|
||||
GeniusAI_la_LIBADD = $(top_builddir)/lib/libvcmi.la @BOOST_SYSTEM_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_THREAD_LIB@
|
||||
GeniusAI_la_LDFLAGS = -L$(top_builddir)/lib -module
|
||||
GeniusAI_la_SOURCES = \
|
||||
BattleHelper.cpp \
|
||||
BattleLogic.cpp \
|
||||
CGeniusAI.cpp \
|
||||
CGeniusAI.h \
|
||||
DLLMain.cpp
|
||||
|
||||
DLLMain.cpp \
|
||||
GeneralAI.cpp
|
||||
|
@ -60,7 +60,8 @@ am__installdirs = "$(DESTDIR)$(pkglibdir)"
|
||||
pkglibLTLIBRARIES_INSTALL = $(INSTALL)
|
||||
LTLIBRARIES = $(pkglib_LTLIBRARIES)
|
||||
GeniusAI_la_DEPENDENCIES = $(top_builddir)/lib/libvcmi.la
|
||||
am_GeniusAI_la_OBJECTS = CGeniusAI.lo DLLMain.lo
|
||||
am_GeniusAI_la_OBJECTS = BattleHelper.lo BattleLogic.lo CGeniusAI.lo \
|
||||
DLLMain.lo GeneralAI.lo
|
||||
GeniusAI_la_OBJECTS = $(am_GeniusAI_la_OBJECTS)
|
||||
GeniusAI_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
||||
@ -219,9 +220,12 @@ pkglib_LTLIBRARIES = GeniusAI.la
|
||||
GeniusAI_la_LIBADD = $(top_builddir)/lib/libvcmi.la @BOOST_SYSTEM_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_THREAD_LIB@
|
||||
GeniusAI_la_LDFLAGS = -L$(top_builddir)/lib -module
|
||||
GeniusAI_la_SOURCES = \
|
||||
BattleHelper.cpp \
|
||||
BattleLogic.cpp \
|
||||
CGeniusAI.cpp \
|
||||
CGeniusAI.h \
|
||||
DLLMain.cpp
|
||||
DLLMain.cpp \
|
||||
GeneralAI.cpp
|
||||
|
||||
all: all-am
|
||||
|
||||
@ -292,8 +296,11 @@ mostlyclean-compile:
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BattleHelper.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BattleLogic.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CGeniusAI.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DLLMain.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GeneralAI.Plo@am__quote@
|
||||
|
||||
.cpp.o:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
|
@ -39,5 +39,7 @@ libvcmi_la_SOURCES = \
|
||||
./NetPacksLib.cpp \
|
||||
./RegisterTypes.cpp \
|
||||
./RegisterTypes.h \
|
||||
./lib/StackFeature.h \
|
||||
./VCMI_Lib.cpp \
|
||||
./VCMI_Lib.h
|
||||
|
||||
|
@ -258,6 +258,7 @@ libvcmi_la_SOURCES = \
|
||||
./NetPacksLib.cpp \
|
||||
./RegisterTypes.cpp \
|
||||
./RegisterTypes.h \
|
||||
./lib/StackFeature.h \
|
||||
./VCMI_Lib.cpp \
|
||||
./VCMI_Lib.h
|
||||
|
||||
|
3
libtool
3
libtool
@ -107,6 +107,9 @@ NL2SP="tr \\015\\012 \\040\\040"
|
||||
reload_flag=" -r"
|
||||
reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs"
|
||||
|
||||
# An object symbol dumper.
|
||||
OBJDUMP="objdump"
|
||||
|
||||
# Method to check whether dependent libraries are shared objects.
|
||||
deplibs_check_method="pass_all"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user