X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fmisc%2FMakefile.am;h=ae696e797011e28f4f35a706392a478d0b1cc864;hb=e4e31be7d43569a92a5d9fa7e784381b66cbd95a;hp=865678b38eb05d9dbbb57bfbe976ed0670934dda;hpb=918f8a3ed4510909041029f26107096b75279c26;p=simgear.git diff --git a/simgear/misc/Makefile.am b/simgear/misc/Makefile.am index 865678b3..ae696e79 100644 --- a/simgear/misc/Makefile.am +++ b/simgear/misc/Makefile.am @@ -3,35 +3,47 @@ includedir = @includedir@/misc lib_LIBRARIES = libsgmisc.a include_HEADERS = \ - 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 + zfstream.hxx \ + interpolator.hxx \ + stdint.hxx \ + PathOptions.hxx \ + sg_dir.hxx \ + ResourceManager.hxx \ + sg_sleep.hxx libsgmisc_a_SOURCES = \ - commands.cxx \ - exception.cxx \ - props.cxx \ - props_io.cxx \ sg_path.cxx \ sgstream.cxx \ strutils.cxx \ + tabbed_values.cxx \ texcoord.cxx \ - zfstream.cxx + zfstream.cxx \ + interpolator.cxx \ + PathOptions.cxx \ + sg_dir.cxx \ + ResourceManager.cxx \ + sg_sleep.cxx -noinst_PROGRAMS = props_test +#noinst_PROGRAMS = tabbed_value_test swap_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 \ +# $(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 -if OLD_AUTOMAKE -INCLUDES += -I$(top_srcdir) -else INCLUDES = -I$(top_srcdir) -endif