]> git.mxchange.org Git - simgear.git/blob - simgear/route/Makefile.am
FG_ to SG_ namespace changes.
[simgear.git] / simgear / route / Makefile.am
1 includedir = @includedir@/route
2
3 lib_LIBRARIES = libsgroute.a
4
5 include_HEADERS = route.hxx waypoint.hxx
6
7 libsgroute_a_SOURCES = \
8         route.cxx \
9         waypoint.cxx
10
11 INCLUDES += -I$(top_srcdir)
12
13 noinst_PROGRAMS = waytest routetest
14
15 waytest_SOURCES = waytest.cxx
16
17 waytest_LDADD = \
18         $(top_builddir)/simgear/route/libsgroute.a \
19         $(top_builddir)/simgear/math/libsgmath.a \
20         $(top_builddir)/simgear/debug/libsgdebug.a
21
22 routetest_SOURCES = routetest.cxx
23
24 routetest_LDADD = \
25         $(top_builddir)/simgear/route/libsgroute.a \
26         $(top_builddir)/simgear/math/libsgmath.a \
27         $(top_builddir)/simgear/debug/libsgdebug.a