]> git.mxchange.org Git - simgear.git/blobdiff - simgear/misc/Makefile.am
#includes based off of srcdir rather than builddir.
[simgear.git] / simgear / misc / Makefile.am
index 8c0d900ccc045305cf812cc89d0eaa007aef442a..002ffab8b70c7abf0b6cb38c3705de6f8a41801f 100644 (file)
@@ -3,7 +3,7 @@ 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
@@ -11,6 +11,7 @@ lib_LIBRARIES = libsgmisc.a
 include_HEADERS = \
        fgpath.hxx \
        fgstream.hxx \
+       props.hxx \
        stopwatch.hxx \
        strutils.hxx \
        texcoord.hxx \
@@ -19,9 +20,10 @@ include_HEADERS = \
 libsgmisc_a_SOURCES = \
        fgpath.cxx \
        fgstream.cxx \
+       props.cxx \
+        props_io.cxx \
        strutils.cxx \
        texcoord.cxx \
        zfstream.cxx
 
-# INCLUDES += -I$(top_builddir)/src $(ZLIB_INCL)
-INCLUDES += $(ZLIB_INCL)
+INCLUDES += -I$(top_srcdir) $(ZLIB_INCL)