X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FMakefile.am;h=2eb3ace49849db59de5a1e54be4d46f4ddac3f5a;hb=e75f6a8f0100f847cbe1bb8fc83a0c466dbe44f5;hp=d8f2ddf15e7b5af88133fe87d2fde89a3f94e79f;hpb=0660ea821af43e15a1fb378eb061b20972fc7338;p=flightgear.git diff --git a/src/Network/Makefile.am b/src/Network/Makefile.am index d8f2ddf15..2eb3ace49 100644 --- a/src/Network/Makefile.am +++ b/src/Network/Makefile.am @@ -1,5 +1,31 @@ noinst_LIBRARIES = libNetwork.a -libNetwork_a_SOURCES = net_hud.cxx network.cxx network.h +if ENABLE_JPEG_SERVER +JPEG_SERVER = jpg-httpd.cxx jpg-httpd.hxx +else +JPEG_SERVER = +endif -INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator +libNetwork_a_SOURCES = \ + protocol.cxx protocol.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 + +if OLD_AUTOMAKE +INCLUDES += -I$(top_srcdir) -I$(top_srcdir)/src +else +INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src +endif