]> git.mxchange.org Git - simgear.git/blob - simgear/misc/Makefile.am
Merge branch 'next' of git://gitorious.org/fg/simgear into next
[simgear.git] / simgear / misc / Makefile.am
1 includedir = @includedir@/misc
2
3 lib_LIBRARIES = libsgmisc.a
4
5 include_HEADERS = \
6         sg_path.hxx \
7         sgstream.hxx \
8         stopwatch.hxx \
9         strutils.hxx \
10         tabbed_values.hxx \
11         texcoord.hxx \
12         zfstream.hxx \
13         interpolator.hxx \
14         stdint.hxx \
15         PathOptions.hxx
16
17 libsgmisc_a_SOURCES = \
18         sg_path.cxx \
19         sgstream.cxx \
20         strutils.cxx \
21         tabbed_values.cxx \
22         texcoord.cxx \
23         zfstream.cxx \
24         interpolator.cxx \
25         PathOptions.cxx
26
27 #noinst_PROGRAMS = tabbed_value_test swap_test
28
29 #tabbed_value_test_SOURCES = tabbed_values_test.cxx
30 #tabbed_value_test_LDADD = \
31 #       libsgmisc.a \
32 #       $(top_builddir)/simgear/xml/libsgxml.a \
33 #       $(top_builddir)/simgear/debug/libsgdebug.a
34
35 $(top_builddir)/simgear/xml/libsgxml.a:
36         cd $(top_builddir)/simgear/xml && $(MAKE) $(AM_MAKEFLAGS) libsgxml.a
37
38 $(top_builddir)/simgear/debug/libsgdebug.a:
39         cd $(top_builddir)/simgear/debug && $(MAKE) $(AM_MAKEFLAGS) libsgdebug.a
40
41 #swap_test_SOURCES = swap_test.cpp
42
43 INCLUDES = -I$(top_srcdir)