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/game/intro | |
parent | 2056ffa670f6d86ad7c9736ebf2886df3753dbbe (diff) |
cleaned up autoconf/automake project files, this should solve build order and dependency issues
Diffstat (limited to 'src/game/intro')
-rw-r--r-- | src/game/intro/Makefile.am | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/src/game/intro/Makefile.am b/src/game/intro/Makefile.am index eeb6f9d..a9d09b9 100644 --- a/src/game/intro/Makefile.am +++ b/src/game/intro/Makefile.am @@ -1,6 +1,22 @@ -INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/game METASOURCES = AUTO -libintro_la_LDFLAGS = -avoid-version +INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/game + noinst_LTLIBRARIES = libintro.la -libintro_la_SOURCES = convoy.cc intro.cc -noinst_HEADERS = convoy.h intro.h + +noinst_HEADERS = \ + convoy.h \ + intro.h + +libintro_la_SOURCES = \ + convoy.cc \ + intro.cc + +libintro_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 + +libintro_la_LDFLAGS = -avoid-version -no-undefined |