X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FMakefile.am;h=2eb3ace49849db59de5a1e54be4d46f4ddac3f5a;hb=e75f6a8f0100f847cbe1bb8fc83a0c466dbe44f5;hp=c0f6ce2c100aa46d0e90a6d28846d66b7d82520a;hpb=c2e6992b5e970f392eb287c4bca11bbecb577065;p=flightgear.git diff --git a/src/Network/Makefile.am b/src/Network/Makefile.am index c0f6ce2c1..2eb3ace49 100644 --- a/src/Network/Makefile.am +++ b/src/Network/Makefile.am @@ -1,18 +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 \ 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_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