]> git.mxchange.org Git - simgear.git/blob - simgear/misc/Makefile.am
James Turner:
[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         tabbed_values.hxx \
15         texcoord.hxx \
16         zfstream.hxx
17
18 libsgmisc_a_SOURCES = \
19         commands.cxx \
20         exception.cxx \
21         props.cxx \
22         props_io.cxx \
23         sg_path.cxx \
24         sgstream.cxx \
25         strutils.cxx \
26         tabbed_values.cxx \
27         texcoord.cxx \
28         zfstream.cxx
29
30 noinst_PROGRAMS = props_test tabbed_value_test
31
32 props_test_SOURCES = props_test.cxx
33 props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a
34
35 tabbed_value_test_SOURCES = tabbed_values_test.cxx
36 tabbed_value_test_LDADD = libsgmisc.a ../debug/libsgdebug.a
37
38 INCLUDES = -I$(top_srcdir)