Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2010-11-16 19:26:53 +0000
committerStijn Buys <ingar@osirion.org>2010-11-16 19:26:53 +0000
commit2daac503a3a2f149f883db7c30199ebbb1f00c7f (patch)
tree6f53bf73d376b6458b173b8d25fd8b420a47911f /src/core
parent2056ffa670f6d86ad7c9736ebf2886df3753dbbe (diff)
cleaned up autoconf/automake project files, this should solve build order and dependency issues
Diffstat (limited to 'src/core')
-rw-r--r--src/core/Makefile.am76
1 files changed, 40 insertions, 36 deletions
diff --git a/src/core/Makefile.am b/src/core/Makefile.am
index 7155f86..ce76303 100644
--- a/src/core/Makefile.am
+++ b/src/core/Makefile.am
@@ -3,42 +3,6 @@ INCLUDES = -I$(top_srcdir)/src
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
-
-
-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 \
@@ -70,3 +34,43 @@ noinst_HEADERS = \
stats.h \
timer.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
+
+libcore_la_DEPENDENCIES = \
+ $(top_builddir)/src/auxiliary/libauxiliary.la \
+ $(top_builddir)/src/math/libmath.la \
+ $(top_builddir)/src/sys/libsys.la \
+ $(top_builddir)/src/filesystem/libfilesystem.la \
+ $(top_builddir)/src/model/libmodel.la
+
+libcore_la_LIBADD =
+
+libcore_la_LDFLAGS = -avoid-version -no-undefined