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/filesystem | |
parent | 2056ffa670f6d86ad7c9736ebf2886df3753dbbe (diff) |
cleaned up autoconf/automake project files, this should solve build order and dependency issues
Diffstat (limited to 'src/filesystem')
-rw-r--r-- | src/filesystem/Makefile.am | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/src/filesystem/Makefile.am b/src/filesystem/Makefile.am index 46bb401..05c1a3f 100644 --- a/src/filesystem/Makefile.am +++ b/src/filesystem/Makefile.am @@ -1,10 +1,24 @@ METASOURCES = AUTO +INCLUDES = -I$(top_srcdir)/src + +noinst_LTLIBRARIES = libfilesystem.la +noinst_HEADERS = \ + diskfile.h \ + file.h \ + filestream.h \ + filesystem.h \ + inifile.h -libfilesystem_la_SOURCES = diskfile.cc file.cc filestream.cc filesystem.cc \ +libfilesystem_la_SOURCES = \ + diskfile.cc \ + file.cc \ + filestream.cc \ + filesystem.cc \ inifile.cc + libfilesystem_la_LDFLAGS = -avoid-version -no-undefined -libfilesystem_la_LIBADD = $(top_builddir)/src/sys/libsys.la -noinst_LTLIBRARIES = libfilesystem.la -noinst_HEADERS = diskfile.h file.h filestream.h filesystem.h inifile.h -INCLUDES = -I$(top_srcdir)/src +libfilesystem_la_DEPENDENCIES = \ + $(top_builddir)/src/sys/libsys.la + +libfilesystem_la_LIBADD = |