X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Froute%2FMakefile.am;h=8035f101437c4d7bde0caceb38d1dbdafdc9f0e4;hb=78411d29a7fdd606e50a81d03d6e8a08dcb15828;hp=c45639e59d53696897f91c9442146f81e2a17600;hpb=135e137921db5d87ed9c5f2aef7dc9ead00fdfda;p=simgear.git diff --git a/simgear/route/Makefile.am b/simgear/route/Makefile.am index c45639e5..8035f101 100644 --- a/simgear/route/Makefile.am +++ b/simgear/route/Makefile.am @@ -2,9 +2,29 @@ includedir = @includedir@/route lib_LIBRARIES = libsgroute.a -include_HEADERS = waypoint.hxx +include_HEADERS = route.hxx waypoint.hxx libsgroute_a_SOURCES = \ + route.cxx \ waypoint.cxx -INCLUDES += -I$(top_srcdir) +INCLUDES = -I$(top_srcdir) + +noinst_PROGRAMS = waytest routetest + +waytest_SOURCES = waytest.cxx + +waytest_LDADD = \ + $(top_builddir)/simgear/route/libsgroute.a \ + $(top_builddir)/simgear/math/libsgmath.a \ + $(top_builddir)/simgear/debug/libsgdebug.a \ + $(top_builddir)/simgear/misc/libsgmisc.a \ + $(top_builddir)/simgear/xml/libsgxml.a \ + -lz + +routetest_SOURCES = routetest.cxx + +routetest_LDADD = \ + $(top_builddir)/simgear/route/libsgroute.a \ + $(top_builddir)/simgear/math/libsgmath.a \ + $(top_builddir)/simgear/debug/libsgdebug.a