]> git.mxchange.org Git - simgear.git/blob - simgear/sound/Makefile.am
another test program, using real world locations
[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         sample_group.hxx \
11         sample_openal.hxx \
12         soundmgr_openal.hxx \
13         xmlsound.hxx 
14
15 libsgsound_a_SOURCES = \
16         sample_group.cxx \
17         sample_openal.cxx  \
18         soundmgr_openal.cxx \
19         xmlsound.cxx 
20
21 check_PROGRAMS = openal_test1 openal_test2 openal_test3
22
23 openal_test1_SOURCES = openal_test1.cxx
24 openal_test2_SOURCES = openal_test2.cxx
25 openal_test3SOURCES = openal_test3.cxx
26
27 openal_test1_LDADD = \
28         $(top_builddir)/simgear/debug/libsgdebug.a \
29         $(openal_LIBS)
30
31 openal_test2_LDADD = \
32         libsgsound.a \
33         $(top_builddir)/simgear/structure/libsgstructure.a \
34         $(top_builddir)/simgear/timing/libsgtiming.a \
35         $(top_builddir)/simgear/debug/libsgdebug.a \
36         $(top_builddir)/simgear/misc/libsgmisc.a \
37         $(top_builddir)/simgear/math/libsgmath.a \
38         $(openal_LIBS)
39
40 openal_test3_LDADD = \
41         libsgsound.a \
42         $(top_builddir)/simgear/structure/libsgstructure.a \
43         $(top_builddir)/simgear/timing/libsgtiming.a \
44         $(top_builddir)/simgear/debug/libsgdebug.a \
45         $(top_builddir)/simgear/misc/libsgmisc.a \
46         $(top_builddir)/simgear/math/libsgmath.a \
47         $(openal_LIBS) -lstdc++
48
49 INCLUDES = -I$(top_srcdir) -DSRC_DIR=\"$(top_srcdir)/simgear/sound\"