]> git.mxchange.org Git - simgear.git/blob - simgear/route/Makefile.am
Patch from Melchior Franz:
[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 if OLD_AUTOMAKE
12 INCLUDES += -I$(top_srcdir)
13 else
14 INCLUDES = -I$(top_srcdir)
15 endif
16
17 noinst_PROGRAMS = waytest routetest
18
19 waytest_SOURCES = waytest.cxx
20
21 waytest_LDADD = \
22         $(top_builddir)/simgear/route/libsgroute.a \
23         $(top_builddir)/simgear/math/libsgmath.a \
24         $(top_builddir)/simgear/debug/libsgdebug.a \
25         $(top_builddir)/simgear/misc/libsgmisc.a \
26         $(top_builddir)/simgear/xml/libsgxml.a \
27         -lz
28
29 routetest_SOURCES = routetest.cxx
30
31 routetest_LDADD = \
32         $(top_builddir)/simgear/route/libsgroute.a \
33         $(top_builddir)/simgear/math/libsgmath.a \
34         $(top_builddir)/simgear/debug/libsgdebug.a