]> git.mxchange.org Git - simgear.git/blobdiff - simgear/misc/Makefile.am
Update the code a bit more, add a function to retreive the last error string and...
[simgear.git] / simgear / misc / Makefile.am
index d961b03c45eb77c6b1a947a392b35ecf5b70daa5..f54ba13987e918b01b9e01a1d327bcc3eae11362 100644 (file)
@@ -2,42 +2,31 @@ includedir = @includedir@/misc
 
 lib_LIBRARIES = libsgmisc.a
 
-noinst_HEADERS = \
-       colours.h
-
 include_HEADERS = \
-        commands.hxx \
-        exception.hxx \
-       props.hxx \
-       props_io.hxx \
        sg_path.hxx \
        sgstream.hxx \
        stopwatch.hxx \
        strutils.hxx \
        tabbed_values.hxx \
-       texture.hxx \
        texcoord.hxx \
-       zfstream.hxx
+       zfstream.hxx \
+       interpolator.hxx
 
 libsgmisc_a_SOURCES = \
-        commands.cxx \
-        exception.cxx \
-       props.cxx \
-        props_io.cxx \
        sg_path.cxx \
        sgstream.cxx \
        strutils.cxx \
        tabbed_values.cxx \
-       texture.cxx \
        texcoord.cxx \
-       zfstream.cxx
-
-noinst_PROGRAMS = props_test tabbed_value_test
+       zfstream.cxx \
+       interpolator.cxx
 
-props_test_SOURCES = props_test.cxx
-props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a
+noinst_PROGRAMS = tabbed_value_test
 
 tabbed_value_test_SOURCES = tabbed_values_test.cxx
-tabbed_value_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a
+tabbed_value_test_LDADD = \
+       $(top_builddir)/simgear/misc/libsgmisc.a \
+       $(top_builddir)/simgear/xml/libsgxml.a \
+       $(top_builddir)/simgear/debug/libsgdebug.a
 
 INCLUDES = -I$(top_srcdir)