c8c6fe4fe6
MIDG-II binary data and replay it in FG. For more details on the MIDG-II see: http://www.microboticsinc.com/midg.html
19 lines
451 B
Makefile
19 lines
451 B
Makefile
noinst_PROGRAMS = GPSsmooth MIDGsmooth
|
|
|
|
GPSsmooth_SOURCES = \
|
|
gps.cxx gps.hxx \
|
|
gps_main.cxx
|
|
|
|
GPSsmooth_LDADD = \
|
|
-lsgtiming -lsgmisc -lsgdebug -lplibnet -lplibul \
|
|
$(joystick_LIBS) $(network_LIBS) $(base_LIBS) -lz
|
|
|
|
MIDGsmooth_SOURCES = \
|
|
MIDG-II.cxx MIDG-II.hxx \
|
|
MIDG_main.cxx
|
|
|
|
MIDGsmooth_LDADD = \
|
|
-lsgtiming -lsgmath -lsgmisc -lsgdebug -lplibnet -lplibul \
|
|
$(joystick_LIBS) $(network_LIBS) $(base_LIBS) -lz
|
|
|
|
INCLUDES = -I$(top_srcdir)/src
|