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