]> git.mxchange.org Git - simgear.git/blob - simgear/misc/Makefile.am
Move binary file reading and writing to simgear.
[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         fgpath.hxx \
13         fgstream.hxx \
14         props.hxx \
15         stopwatch.hxx \
16         strutils.hxx \
17         texcoord.hxx \
18         zfstream.hxx
19
20 libsgmisc_a_SOURCES = \
21         fgpath.cxx \
22         fgstream.cxx \
23         props.cxx \
24         props_io.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)