]> git.mxchange.org Git - simgear.git/blob - simgear/misc/Makefile.am
Patches from Tony Peden to separate property XML I/O operations into a
[simgear.git] / simgear / misc / Makefile.am
1 includedir = @includedir@/misc
2
3 lib_LIBRARIES = libsgmisc.a
4
5 include_HEADERS = \
6         commands.hxx \
7         exception.hxx \
8         props.hxx \
9   props_io.hxx \
10         sg_path.hxx \
11         sgstream.hxx \
12         stopwatch.hxx \
13         strutils.hxx \
14         texcoord.hxx \
15         zfstream.hxx
16
17 libsgmisc_a_SOURCES = \
18         commands.cxx \
19         exception.cxx \
20         props.cxx \
21         props_io.cxx \
22         sg_path.cxx \
23         sgstream.cxx \
24         strutils.cxx \
25         texcoord.cxx \
26         zfstream.cxx
27
28 noinst_PROGRAMS = props_test
29
30 props_test_SOURCES = props_test.cxx
31 props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a
32
33 if OLD_AUTOMAKE
34 INCLUDES += -I$(top_srcdir)
35 else
36 INCLUDES = -I$(top_srcdir)
37 endif