X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fmisc%2FMakefile.am;h=d27727f560ec9b45a45657c8558f3fd34310a7ec;hb=a26c677df4c997a700a2e50842f927849c05e4fe;hp=8c0d900ccc045305cf812cc89d0eaa007aef442a;hpb=82f410e9559fc33cb87515c0659d5f24115d1386;p=simgear.git diff --git a/simgear/misc/Makefile.am b/simgear/misc/Makefile.am index 8c0d900c..d27727f5 100644 --- a/simgear/misc/Makefile.am +++ b/simgear/misc/Makefile.am @@ -1,27 +1,38 @@ includedir = @includedir@/misc -if HAVE_ZLIB -ZLIB_INCL = -else -ZLIB_INCL = -I$(top_builddir)/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 -# INCLUDES += -I$(top_builddir)/src $(ZLIB_INCL) -INCLUDES += $(ZLIB_INCL) +noinst_PROGRAMS = props_test tabbed_value_test + +props_test_SOURCES = props_test.cxx +props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a + +tabbed_value_test_SOURCES = tabbed_values_test.cxx +tabbed_value_test_LDADD = libsgmisc.a ../debug/libsgdebug.a + +INCLUDES = -I$(top_srcdir)