]> git.mxchange.org Git - simgear.git/blob - simgear/misc/Makefile.am
a3616de3faf49921be6a1602ccd674a1f02a3e70
[simgear.git] / simgear / misc / Makefile.am
1 includedir = @includedir@/misc
2
3 lib_LIBRARIES = libsgmisc.a
4
5 noinst_HEADERS = \
6         colours.h
7
8 include_HEADERS = \
9         commands.hxx \
10         exception.hxx \
11         props.hxx \
12         props_io.hxx \
13         sg_path.hxx \
14         sgstream.hxx \
15         stopwatch.hxx \
16         strutils.hxx \
17         tabbed_values.hxx \
18         texcoord.hxx \
19         zfstream.hxx
20
21 libsgmisc_a_SOURCES = \
22         commands.cxx \
23         exception.cxx \
24         props.cxx \
25         props_io.cxx \
26         sg_path.cxx \
27         sgstream.cxx \
28         strutils.cxx \
29         tabbed_values.cxx \
30         texcoord.cxx \
31         zfstream.cxx
32
33 noinst_PROGRAMS = props_test tabbed_value_test
34
35 props_test_SOURCES = props_test.cxx
36 props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a
37
38 tabbed_value_test_SOURCES = tabbed_values_test.cxx
39 tabbed_value_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a
40
41 INCLUDES = -I$(top_srcdir)