]> git.mxchange.org Git - simgear.git/blobdiff - simgear/misc/Makefile.am
James Turner:
[simgear.git] / simgear / misc / Makefile.am
index 8e91feb7c3d26fb27c07b5263195ed63802723be..d27727f560ec9b45a45657c8558f3fd34310a7ec 100644 (file)
@@ -1,34 +1,38 @@
 includedir = @includedir@/misc
 
-if HAVE_ZLIB
-ZLIB_INCL =
-else
-ZLIB_INCL = -I$(top_srcdir)/src/zlib
-endif
-
 lib_LIBRARIES = libsgmisc.a
 
 include_HEADERS = \
-       fgpath.hxx \
-       fgstream.hxx \
+        commands.hxx \
+        exception.hxx \
        props.hxx \
+  props_io.hxx \
+       sg_path.hxx \
+       sgstream.hxx \
        stopwatch.hxx \
        strutils.hxx \
+       tabbed_values.hxx \
        texcoord.hxx \
        zfstream.hxx
 
 libsgmisc_a_SOURCES = \
-       fgpath.cxx \
-       fgstream.cxx \
+        commands.cxx \
+        exception.cxx \
        props.cxx \
         props_io.cxx \
+       sg_path.cxx \
+       sgstream.cxx \
        strutils.cxx \
+       tabbed_values.cxx \
        texcoord.cxx \
        zfstream.cxx
 
-noinst_PROGRAMS = props_test
+noinst_PROGRAMS = props_test tabbed_value_test
 
-props_test_SOURCES = props_test.cxx props_test.hxx
+props_test_SOURCES = props_test.cxx
 props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a
 
-INCLUDES += -I$(top_srcdir) $(ZLIB_INCL)
+tabbed_value_test_SOURCES = tabbed_values_test.cxx
+tabbed_value_test_LDADD = libsgmisc.a ../debug/libsgdebug.a
+
+INCLUDES = -I$(top_srcdir)