1
0
Fork 0
flightgear/utils/GPSsmooth/Makefile.am

44 lines
1.1 KiB
Text
Raw Normal View History

noinst_PROGRAMS = GPSsmooth MIDGsmooth UGsmooth
if HAVE_FRAMEWORK_PLIB
GPSsmooth_LDFLAGS = $(plib_FRAMEWORK)
MIDGsmooth_LDFLAGS = $(plib_FRAMEWORK)
UGsmooth_LDFLAGS = $(plib_FRAMEWORK)
else
2011-01-05 16:54:38 +00:00
GPSsmooth_PLIB_LIBS = -lplibul
MIDGsmooth_PLIB_LIBS = -lplibul
UGsmooth_PLIB_LIBS = -plibul
endif
GPSsmooth_SOURCES = \
gps.cxx gps.hxx \
gps_main.cxx
2005-07-06 11:51:32 +00:00
GPSsmooth_LDADD = \
2011-01-05 16:54:38 +00:00
$(GPSsmooth_PLIB_LIBS) -lsgtiming -lsgmisc -lsgdebug -lsgio \
2005-07-07 19:09:52 +00:00
$(joystick_LIBS) $(network_LIBS) $(base_LIBS) -lz
MIDGsmooth_SOURCES = \
MIDG-II.cxx MIDG-II.hxx \
MIDG_main.cxx
MIDGsmooth_LDADD = \
$(MIDGsmooth_PLIB_LIBS) -lsgio -lsgserial -lsgtiming \
-lsgmath -lsgbucket -lsgmisc -lsgdebug -lsgstructure \
$(joystick_LIBS) $(network_LIBS) $(base_LIBS) -lz
UGsmooth_SOURCES = \
UGear.cxx UGear.hxx \
UGear_command.cxx UGear_command.hxx \
UGear_main.cxx \
UGear_opengc.hxx \
UGear_telnet.cxx UGear_telnet.hxx
UGsmooth_LDADD = \
$(UGsmooth_PLIB_LIBS) -lsgio -lsgserial -lsgtiming \
-lsgmath -lsgbucket -lsgmisc -lsgdebug \
$(joystick_LIBS) $(network_LIBS) $(base_LIBS) -lz
INCLUDES = -I$(top_srcdir)/src