]> git.mxchange.org Git - simgear.git/blob - simgear/misc/Makefile.am
Cygwin fixes.
[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
16 libsgmisc_a_SOURCES = \
17         sg_path.cxx \
18         sgstream.cxx \
19         strutils.cxx \
20         tabbed_values.cxx \
21         texcoord.cxx \
22         zfstream.cxx \
23         interpolator.cxx
24
25 noinst_PROGRAMS = tabbed_value_test swap_test
26
27 tabbed_value_test_SOURCES = tabbed_values_test.cxx
28 tabbed_value_test_LDADD = \
29         $(top_builddir)/simgear/misc/libsgmisc.a \
30         $(top_builddir)/simgear/xml/libsgxml.a \
31         $(top_builddir)/simgear/debug/libsgdebug.a
32
33 swap_test_SOURCES = swap_test.cpp
34
35 INCLUDES = -I$(top_srcdir)