]> git.mxchange.org Git - simgear.git/blob - simgear/sound/Makefile.am
Pass current-dir down through XMLSound
[simgear.git] / simgear / sound / Makefile.am
1 includedir = @includedir@/sound
2
3 EXTRA_DIST = jet.wav
4
5 lib_LIBRARIES = libsgsound.a
6
7 noinst_HEADERS =
8
9 include_HEADERS = \
10         soundmgr_openal.hxx \
11         sample_group.hxx \
12         sample_openal.hxx \
13         sample_queue.hxx \
14         xmlsound.hxx
15
16 libsgsound_a_SOURCES = \
17         soundmgr_openal.cxx \
18         sample_group.cxx \
19         sample_openal.cxx  \
20         sample_queue.cxx \
21         xmlsound.cxx
22
23 check_PROGRAMS = openal_test1 openal_test2 openal_test3 openal_test4
24
25 openal_test1_SOURCES = openal_test1.cxx
26 openal_test2_SOURCES = openal_test2.cxx
27 openal_test3_SOURCES = openal_test3.cxx
28 openal_test4_SOURCES = openal_test4.cxx
29
30 openal_test1_LDADD = \
31         $(top_builddir)/simgear/debug/libsgdebug.a \
32         $(openal_LIBS)
33
34 openal_test2_LDADD = \
35         libsgsound.a \
36         $(top_builddir)/simgear/structure/libsgstructure.a \
37         $(top_builddir)/simgear/timing/libsgtiming.a \
38         $(top_builddir)/simgear/debug/libsgdebug.a \
39         $(top_builddir)/simgear/misc/libsgmisc.a \
40         $(top_builddir)/simgear/math/libsgmath.a \
41         $(openal_LIBS)
42
43 openal_test3_LDADD = \
44         libsgsound.a \
45         $(top_builddir)/simgear/structure/libsgstructure.a \
46         $(top_builddir)/simgear/timing/libsgtiming.a \
47         $(top_builddir)/simgear/debug/libsgdebug.a \
48         $(top_builddir)/simgear/misc/libsgmisc.a \
49         $(top_builddir)/simgear/math/libsgmath.a \
50         $(openal_LIBS) -lstdc++
51
52 openal_test4_LDADD = \
53         libsgsound.a \
54         $(top_builddir)/simgear/structure/libsgstructure.a \
55         $(top_builddir)/simgear/timing/libsgtiming.a \
56         $(top_builddir)/simgear/debug/libsgdebug.a \
57         $(top_builddir)/simgear/misc/libsgmisc.a \
58         $(top_builddir)/simgear/math/libsgmath.a \
59         $(openal_LIBS) -lstdc++
60
61 INCLUDES = -I$(top_srcdir) -DSRC_DIR=\"$(top_srcdir)/simgear/sound\"