]> git.mxchange.org Git - simgear.git/blob - simgear/misc/Makefile.am
a4a37a18722ac0a74a6dbde61418d6038acc75df
[simgear.git] / simgear / misc / Makefile.am
1 includedir = @includedir@/misc
2
3 if HAVE_ZLIB
4 ZLIB_INCL =
5 else
6 ZLIB_INCL = -I$(top_srcdir)/src/zlib
7 endif
8
9 lib_LIBRARIES = libsgmisc.a
10
11 include_HEADERS = \
12         props.hxx \
13         sg_path.hxx \
14         sgstream.hxx \
15         stopwatch.hxx \
16         strutils.hxx \
17         texcoord.hxx \
18         zfstream.hxx
19
20 libsgmisc_a_SOURCES = \
21         props.cxx \
22         props_io.cxx \
23         sg_path.cxx \
24         sgstream.cxx \
25         strutils.cxx \
26         texcoord.cxx \
27         zfstream.cxx
28
29 noinst_PROGRAMS = props_test
30
31 props_test_SOURCES = props_test.cxx
32 props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a
33
34 INCLUDES += -I$(top_srcdir) $(ZLIB_INCL)