]> git.mxchange.org Git - flightgear.git/blob - utils/GPSsmooth/Makefile.am
Restore options *processing* order (which is now distinct from *parsing* order),...
[flightgear.git] / utils / GPSsmooth / Makefile.am
1 noinst_PROGRAMS = GPSsmooth MIDGsmooth UGsmooth
2
3 if HAVE_FRAMEWORK_PLIB
4 GPSsmooth_LDFLAGS = $(plib_FRAMEWORK)
5 MIDGsmooth_LDFLAGS = $(plib_FRAMEWORK)
6 UGsmooth_LDFLAGS = $(plib_FRAMEWORK)
7 else
8 GPSsmooth_PLIB_LIBS = -lplibnet -lplibul
9 MIDGsmooth_PLIB_LIBS = -lplibnet -lplibul
10 UGsmooth_PLIB_LIBS = -lplibnet -lplibul
11 endif
12
13
14 GPSsmooth_SOURCES = \
15         gps.cxx gps.hxx \
16         gps_main.cxx
17
18 GPSsmooth_LDADD = \
19         $(GPSsmooth_PLIB_LIBS) -lsgio -lsgtiming -lsgmisc -lsgdebug -lsgstructure -lsgthreads \
20         $(joystick_LIBS) $(network_LIBS) $(base_LIBS) -lz
21
22 MIDGsmooth_SOURCES = \
23         MIDG-II.cxx MIDG-II.hxx \
24         MIDG_main.cxx
25
26 MIDGsmooth_LDADD = \
27         $(MIDGsmooth_PLIB_LIBS) -lsgio -lsgserial -lsgtiming \
28         -lsgmath -lsgbucket -lsgmisc -lsgdebug -lsgstructure -lsgthreads \
29         $(joystick_LIBS) $(network_LIBS) $(base_LIBS) -lz
30
31 UGsmooth_SOURCES = \
32         UGear.cxx UGear.hxx \
33         UGear_command.cxx UGear_command.hxx \
34         UGear_main.cxx \
35         UGear_opengc.hxx \
36         UGear_telnet.cxx UGear_telnet.hxx
37
38 UGsmooth_LDADD = \
39         $(UGsmooth_PLIB_LIBS) -lsgio -lsgserial -lsgtiming \
40         -lsgmath -lsgbucket -lsgmisc -lsgdebug -lsgstructure -lsgthreads \
41         $(joystick_LIBS) $(network_LIBS) $(base_LIBS) -lz
42
43 INCLUDES = -I$(top_srcdir)/src