]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/Makefile.am
Changes to support optional screen snap shot httpd server.
[flightgear.git] / src / Network / Makefile.am
index 305c3363a605bc6c89c1bcbc89033c5ed1cb1b61..2eb3ace49849db59de5a1e54be4d46f4ddac3f5a 100644 (file)
@@ -1,13 +1,31 @@
 noinst_LIBRARIES = libNetwork.a
 
+if ENABLE_JPEG_SERVER
+JPEG_SERVER = jpg-httpd.cxx jpg-httpd.hxx
+else
+JPEG_SERVER =
+endif
+
 libNetwork_a_SOURCES = \
        protocol.cxx protocol.hxx \
-       native.cxx native.hxx \
+       atlas.cxx atlas.hxx \
        garmin.cxx garmin.hxx \
+        httpd.cxx httpd.hxx \
+        $(JPEG_SERVER) \
+       joyclient.cxx joyclient.hxx \
+       native.cxx native.hxx \
+       native_ctrls.cxx native_ctrls.hxx \
+       native_fdm.cxx native_fdm.hxx \
        nmea.cxx nmea.hxx \
+        opengc.cxx opengc.hxx opengc_data.hxx \
+       props.cxx props.hxx \
        pve.cxx pve.hxx \
+       raw_ctrls.hxx raw_fdm.hxx \
        ray.cxx ray.hxx \
-       rul.cxx rul.hxx \
-       joyclient.cxx joyclient.hxx
+       rul.cxx rul.hxx
 
-INCLUDES += -I$(top_builddir) -I$(top_builddir)/src
+if OLD_AUTOMAKE
+INCLUDES += -I$(top_srcdir) -I$(top_srcdir)/src
+else
+INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src
+endif