12 lines
302 B
Makefile
12 lines
302 B
Makefile
noinst_LIBRARIES = libNavAids.a
|
|
|
|
noinst_PROGRAMS = testnavs
|
|
|
|
libNavAids_a_SOURCES = \
|
|
ils.hxx ilslist.hxx ilslist.cxx \
|
|
nav.hxx navlist.hxx navlist.cxx
|
|
|
|
testnavs_SOURCES = testnavs.cxx
|
|
testnavs_LDADD = libNavAids.a -lsgdebug -lsgmath -lsgmisc -lz
|
|
|
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/src
|