]> git.mxchange.org Git - simgear.git/blob - simgear/math/Makefile.am
Changed directory structure a bit to facilitate building for windows.
[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_builddir)/src/zlib
7 endif
8
9 lib_LIBRARIES = libsgmath.a
10
11 include_HEADERS = \
12         fg_geodesy.hxx \
13         fg_memory.h \
14         fg_random.h \
15         fg_types.hxx \
16         interpolater.hxx \
17         leastsqs.hxx \
18         point3d.hxx \
19         polar3d.hxx \
20         vector.hxx
21
22 EXTRA_DIST = linintp2.h linintp2.inl sphrintp.h sphrintp.inl
23
24 libsgmath_a_SOURCES = \
25         fg_geodesy.cxx \
26         fg_random.c \
27         interpolater.cxx \
28         leastsqs.cxx \
29         polar3d.cxx \
30         vector.cxx
31
32 # INCLUDES += -I$(top_builddir)/src $(ZLIB_INCL)
33 INCLUDES += $(ZLIB_INCL)