]> git.mxchange.org Git - simgear.git/blob - simgear/route/Makefile.am
Added route.[ch]xx which maintains a list of waypoints (i.e. a route)
[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
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