18 lines
339 B
Makefile
18 lines
339 B
Makefile
includedir = @includedir@/serial
|
|
|
|
lib_LIBRARIES = libsgserial.a
|
|
|
|
include_HEADERS = serial.hxx
|
|
|
|
libsgserial_a_SOURCES = serial.cxx
|
|
|
|
noinst_PROGRAMS = testserial
|
|
|
|
testserial_SOURCES = testserial.cxx
|
|
|
|
testserial_LDADD = \
|
|
$(top_builddir)/simgear/serial/libsgserial.a \
|
|
$(top_builddir)/simgear/debug/libsgdebug.a
|
|
|
|
INCLUDES = -I$(top_srcdir)
|