]> git.mxchange.org Git - simgear.git/blob - simgear/math/Makefile.am
Fix a build order problem.
[simgear.git] / simgear / math / Makefile.am
1 includedir = @includedir@/math
2
3 if HAVE_ZLIB
4 ZLIB_INCL =
5 else
6 ZLIB_INCL = -I$(top_srcdir)/src/zlib
7 endif
8
9 lib_LIBRARIES = libsgmath.a
10
11 include_HEADERS = \
12         fg_memory.h \
13         interpolater.hxx \
14         leastsqs.hxx \
15         localconsts.hxx \
16         point3d.hxx \
17         polar3d.hxx \
18         sg_geodesy.hxx \
19         sg_random.h \
20         sg_types.hxx \
21         vector.hxx
22
23 EXTRA_DIST = linintp2.h linintp2.inl sphrintp.h sphrintp.inl
24
25 libsgmath_a_SOURCES = \
26         interpolater.cxx \
27         leastsqs.cxx \
28         polar3d.cxx \
29         sg_geodesy.cxx \
30         sg_random.c \
31         vector.cxx
32
33 INCLUDES += -I$(top_srcdir) $(ZLIB_INCL)