]> git.mxchange.org Git - simgear.git/blobdiff - simgear/misc/Makefile.am
Don't waste space with too huge stl containers.
[simgear.git] / simgear / misc / Makefile.am
index f54ba13987e918b01b9e01a1d327bcc3eae11362..db9181ba88d648d93e96af14a1207c0a42505160 100644 (file)
@@ -10,7 +10,9 @@ include_HEADERS = \
        tabbed_values.hxx \
        texcoord.hxx \
        zfstream.hxx \
-       interpolator.hxx
+       interpolator.hxx \
+       stdint.hxx \
+       PathOptions.hxx
 
 libsgmisc_a_SOURCES = \
        sg_path.cxx \
@@ -19,14 +21,23 @@ libsgmisc_a_SOURCES = \
        tabbed_values.cxx \
        texcoord.cxx \
        zfstream.cxx \
-       interpolator.cxx
+       interpolator.cxx \
+       PathOptions.cxx
 
-noinst_PROGRAMS = tabbed_value_test
+noinst_PROGRAMS = tabbed_value_test swap_test
 
 tabbed_value_test_SOURCES = tabbed_values_test.cxx
 tabbed_value_test_LDADD = \
-       $(top_builddir)/simgear/misc/libsgmisc.a \
+       libsgmisc.a \
        $(top_builddir)/simgear/xml/libsgxml.a \
        $(top_builddir)/simgear/debug/libsgdebug.a
 
+$(top_builddir)/simgear/xml/libsgxml.a:
+       cd $(top_builddir)/simgear/xml && $(MAKE) $(AM_MAKEFLAGS) libsgxml.a
+
+$(top_builddir)/simgear/debug/libsgdebug.a:
+       cd $(top_builddir)/simgear/debug && $(MAKE) $(AM_MAKEFLAGS) libsgdebug.a
+
+swap_test_SOURCES = swap_test.cpp
+
 INCLUDES = -I$(top_srcdir)