diff options
author | Stijn Buys <ingar@osirion.org> | 2010-11-16 19:26:53 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2010-11-16 19:26:53 +0000 |
commit | 2daac503a3a2f149f883db7c30199ebbb1f00c7f (patch) | |
tree | 6f53bf73d376b6458b173b8d25fd8b420a47911f /src/dedicated | |
parent | 2056ffa670f6d86ad7c9736ebf2886df3753dbbe (diff) |
cleaned up autoconf/automake project files, this should solve build order and dependency issues
Diffstat (limited to 'src/dedicated')
-rw-r--r-- | src/dedicated/Makefile.am | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/src/dedicated/Makefile.am b/src/dedicated/Makefile.am index 879829e..437ce71 100644 --- a/src/dedicated/Makefile.am +++ b/src/dedicated/Makefile.am @@ -1,7 +1,18 @@ METASOURCES = AUTO -libdedicated_la_SOURCES = console.cc dedicated.cc -noinst_HEADERS = console.h dedicated.h -noinst_LTLIBRARIES = libdedicated.la INCLUDES = -I$(top_srcdir)/src -libdedicated_la_LDFLAGS = -avoid-version -no-undefined -libdedicated_la_LIBADD = $(top_builddir)/src/core/libcore.la + +noinst_LTLIBRARIES = libdedicated.la +noinst_HEADERS = console.h dedicated.h +libdedicated_la_SOURCES = console.cc dedicated.cc + +libdedicated_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 \ + $(top_builddir)/src/core/libcore.la + +libdedicated_la_LIBADD = + +libdedicated_la_LDFLAGS = -avoid-version -no-undefined
\ No newline at end of file |