From d6e4c4e7c2b1e28961f1dfe2f25ef96ced60b21b Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 17 Oct 2010 17:19:03 +0000 Subject: core bullet physics support, initial vstrafe support --- src/core/Makefile.am | 73 +++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 64 insertions(+), 9 deletions(-) (limited to 'src/core/Makefile.am') diff --git a/src/core/Makefile.am b/src/core/Makefile.am index 6085085..7155f86 100644 --- a/src/core/Makefile.am +++ b/src/core/Makefile.am @@ -1,17 +1,72 @@ METASOURCES = AUTO INCLUDES = -I$(top_srcdir)/src -libcore_la_SOURCES = application.cc commandbuffer.cc core.cc cvar.cc \ - descriptions.cc entity.cc extension.cc func.cc gameconnection.cc gameinterface.cc \ - gameserver.cc info.cc item.cc inventory.cc label.cc loader.cc module.cc netclient.cc \ - netconnection.cc netplayer.cc netserver.cc parser.cc player.cc stats.cc timer.cc zone.cc +noinst_LTLIBRARIES = libcore.la + libcore_la_LDFLAGS = -avoid-version -no-undefined + libcore_la_LIBADD = $(top_builddir)/src/model/libmodel.la \ $(top_builddir)/src/filesystem/libfilesystem.la $(top_builddir)/src/math/libmath.la $(top_builddir)/src/sys/libsys.la \ $(top_builddir)/src/auxiliary/libauxiliary.la -noinst_LTLIBRARIES = libcore.la -noinst_HEADERS = application.h commandbuffer.h core.h cvar.h entity.h func.h \ - gameconnection.h gameinterface.h gameserver.h label.h message.h module.h net.h netclient.h \ - netconnection.h netserver.h player.h range.h stats.h timer.h parser.h descriptions.h \ - extension.h loader.h info.h item.h inventory.h zone.h + +libcore_la_SOURCES = \ + application.cc \ + commandbuffer.cc \ + core.cc \ + cvar.cc \ + descriptions.cc \ + entity.cc \ + extension.cc \ + func.cc \ + gameconnection.cc \ + gameinterface.cc \ + gameserver.cc \ + info.cc \ + inventory.cc \ + item.cc \ + label.cc \ + loader.cc \ + module.cc \ + netclient.cc \ + netconnection.cc \ + netplayer.cc \ + netserver.cc \ + parser.cc \ + physics.cc \ + player.cc \ + stats.cc \ + timer.cc \ + zone.cc + +noinst_HEADERS = \ + application.h \ + commandbuffer.h \ + core.h \ + cvar.h \ + descriptions.h \ + entity.h \ + extension.h \ + func.h \ + gameconnection.h \ + gameinterface.h \ + gameserver.h \ + info.h \ + inventory.h \ + item.h \ + label.h \ + loader.h \ + message.h \ + module.h \ + netclient.h \ + netconnection.h \ + net.h \ + netplayer.h \ + netserver.h \ + parser.h \ + physics.h \ + player.h \ + range.h \ + stats.h \ + timer.h \ + zone.h -- cgit v1.2.3