]> git.mxchange.org Git - flightgear.git/blob - Array/Makefile.am
Initial revision. (derived from libDEM.a code.)
[flightgear.git] / Array / Makefile.am
1 noinst_LIBRARIES = libArray.a
2
3 libArray_a_SOURCES = array.cxx array.hxx
4
5 bin_PROGRAMS = testarray
6
7 testarray_SOURCES = testarray.cxx
8
9 testarray_LDADD = \
10         $(top_builddir)/Tools/Construct/Array/libArray.a \
11         $(top_builddir)/Lib/Bucket/libBucket.a \
12         $(top_builddir)/Lib/Math/libMath.a \
13         $(top_builddir)/Lib/Misc/libMisc.a \
14         $(top_builddir)/Lib/zlib/libz.a
15
16 INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
17
18 # We can't build this with "-O2" (optimization) since this causes a seg fault
19 # I haven't found a way to strip this out of the CXXFLAGS, so I'm just
20 # setting it to "-g"
21 CXXFLAGS = -g
22