X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fmisc%2FMakefile.am;h=1be8887076397e5f14001a9b5976e8b2103e4863;hb=5bab565cfe4c30d6cf08ecaba50af74d5e4f0c98;hp=b11191802215a5b35e8570886d7009478e1e0067;hpb=a1bf8d22297416de9524370f4c0d4f0f0c9e89d4;p=simgear.git diff --git a/simgear/misc/Makefile.am b/simgear/misc/Makefile.am index b1119180..1be88870 100644 --- a/simgear/misc/Makefile.am +++ b/simgear/misc/Makefile.am @@ -3,27 +3,40 @@ includedir = @includedir@/misc if HAVE_ZLIB ZLIB_INCL = else -ZLIB_INCL = -I$(top_builddir)/src/zlib +ZLIB_INCL = -I$(top_srcdir)/src/zlib endif lib_LIBRARIES = libsgmisc.a include_HEADERS = \ - fgpath.hxx \ - fgstream.hxx \ + commands.hxx \ + exception.hxx \ props.hxx \ + sg_path.hxx \ + sgstream.hxx \ stopwatch.hxx \ strutils.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 \ texcoord.cxx \ zfstream.cxx -INCLUDES += -I$(top_builddir) $(ZLIB_INCL) +noinst_PROGRAMS = props_test + +props_test_SOURCES = props_test.cxx +props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a + +if OLD_AUTOMAKE +INCLUDES += -I$(top_srcdir) $(ZLIB_INCL) +else +INCLUDES = -I$(top_srcdir) $(ZLIB_INCL) +endif