X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fmisc%2FMakefile.am;h=0e0fc94993a0833de1f8dcea4dd5ed0ec4674ae8;hb=2a2e2716bdfbecb3494ab935171ed6224a178470;hp=8c6d70dab99097488bbf95502db8c0a479686b21;hpb=525d2df3ccbf80152492a8632267f228a41ac393;p=simgear.git diff --git a/simgear/misc/Makefile.am b/simgear/misc/Makefile.am index 8c6d70da..0e0fc949 100644 --- a/simgear/misc/Makefile.am +++ b/simgear/misc/Makefile.am @@ -3,32 +3,43 @@ includedir = @includedir@/misc lib_LIBRARIES = libsgmisc.a include_HEADERS = \ - commands.hxx \ - exception.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 libsgmisc_a_SOURCES = \ - commands.cxx \ - exception.cxx \ sg_path.cxx \ sgstream.cxx \ strutils.cxx \ tabbed_values.cxx \ texcoord.cxx \ - zfstream.cxx + zfstream.cxx \ + interpolator.cxx \ + PathOptions.cxx \ + sg_dir.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 \ - $(top_builddir)/simgear/xml/libsgxml.a \ - $(top_builddir)/simgear/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 INCLUDES = -I$(top_srcdir)