]> git.mxchange.org Git - flightgear.git/blob - src/Network/Makefile.am
Add the multiplay.* and jpg-httpd.* files to the EXTRA_DIST line so they get included...
[flightgear.git] / src / Network / Makefile.am
1 EXTRA_DIST = jpg-httpd.cxx jpg-httpd.hxx \
2              multiplay.cxx multiplay.hxx
3
4 noinst_LIBRARIES = libNetwork.a
5
6 if ENABLE_JPEG_SERVER
7 JPEG_SERVER = jpg-httpd.cxx jpg-httpd.hxx
8 else
9 JPEG_SERVER =
10 endif
11
12 if ENABLE_MPLAYER_AS
13 MPLAYER_AS = multiplay.cxx multiplay.hxx
14 else
15 MPLAYER_AS =
16 endif
17
18 libNetwork_a_SOURCES = \
19         protocol.cxx protocol.hxx \
20         atc610x.cxx atc610x.hxx \
21         atlas.cxx atlas.hxx \
22         garmin.cxx garmin.hxx \
23         httpd.cxx httpd.hxx \
24         $(JPEG_SERVER) \
25         joyclient.cxx joyclient.hxx \
26         jsclient.cxx jsclient.hxx \
27         native.cxx native.hxx \
28         native_ctrls.cxx native_ctrls.hxx \
29         native_fdm.cxx native_fdm.hxx \
30         native_gui.cxx native_gui.hxx \
31         net_ctrls.hxx net_fdm.hxx net_fdm_mini.hxx net_gui.hxx \
32         nmea.cxx nmea.hxx \
33         opengc.cxx opengc.hxx opengc_data.hxx \
34         $(MPLAYER_AS) \
35         props.cxx props.hxx \
36         pve.cxx pve.hxx \
37         ray.cxx ray.hxx \
38         rul.cxx rul.hxx \
39         generic.hxx generic.cxx
40
41 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src