34 lines
873 B
Makefile
34 lines
873 B
Makefile
noinst_PROGRAMS = GPSsmooth MIDGsmooth UGsmooth
|
|
|
|
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 = \
|
|
-lsgio -lsgserial -lsgtiming -lsgmath -lsgbucket -lsgmisc -lsgdebug \
|
|
-lsgstructure \
|
|
-lplibnet -lplibul \
|
|
$(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 = \
|
|
-lsgio -lsgserial -lsgtiming -lsgmath -lsgbucket -lsgmisc -lsgdebug \
|
|
-lplibnet -lplibul \
|
|
$(joystick_LIBS) $(network_LIBS) $(base_LIBS) -lz
|
|
|
|
|
|
INCLUDES = -I$(top_srcdir)/src
|