]> git.mxchange.org Git - simgear.git/blob - simgear/misc/Makefile.am
Tweaks to track changes in property manager.
[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         commands.hxx \
13         props.hxx \
14         sg_path.hxx \
15         sgstream.hxx \
16         stopwatch.hxx \
17         strutils.hxx \
18         texcoord.hxx \
19         zfstream.hxx
20
21 libsgmisc_a_SOURCES = \
22         commands.cxx \
23         props.cxx \
24         props_io.cxx \
25         sg_path.cxx \
26         sgstream.cxx \
27         strutils.cxx \
28         texcoord.cxx \
29         zfstream.cxx
30
31 noinst_PROGRAMS = props_test
32
33 props_test_SOURCES = props_test.cxx
34 props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a
35
36 INCLUDES += -I$(top_srcdir) $(ZLIB_INCL)