]> git.mxchange.org Git - simgear.git/blob - simgear/misc/Makefile.am
A patch from Frederic Bouvier to correct a naming problem caused bu Curts work. This...
[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         sg_path.hxx \
9         sgstream.hxx \
10         stopwatch.hxx \
11         strutils.hxx \
12         tabbed_values.hxx \
13         texcoord.hxx \
14         zfstream.hxx
15
16 libsgmisc_a_SOURCES = \
17         commands.cxx \
18         exception.cxx \
19         sg_path.cxx \
20         sgstream.cxx \
21         strutils.cxx \
22         tabbed_values.cxx \
23         texcoord.cxx \
24         zfstream.cxx
25
26 noinst_PROGRAMS = tabbed_value_test
27
28 tabbed_value_test_SOURCES = tabbed_values_test.cxx
29 tabbed_value_test_LDADD = \
30         $(top_builddir)/simgear/misc/libsgmisc.a \
31         $(top_builddir)/simgear/xml/libsgxml.a \
32         $(top_builddir)/simgear/debug/libsgdebug.a
33
34 INCLUDES = -I$(top_srcdir)