]> git.mxchange.org Git - simgear.git/blob - simgear/sound/Makefile.am
Updates to the test utilies.
[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
22
23 openal_test1_SOURCES = openal_test1.cxx
24 openal_test2_SOURCES = openal_test2.cxx
25
26 openal_test1_LDADD = \
27         $(top_builddir)/simgear/debug/libsgdebug.a \
28         $(openal_LIBS)
29
30 openal_test2_LDADD = \
31         libsgsound.a \
32         $(top_builddir)/simgear/structure/libsgstructure.a \
33         $(top_builddir)/simgear/timing/libsgtiming.a \
34         $(top_builddir)/simgear/debug/libsgdebug.a \
35         $(top_builddir)/simgear/misc/libsgmisc.a \
36         $(top_builddir)/simgear/math/libsgmath.a \
37         $(openal_LIBS)
38
39 INCLUDES = -I$(top_srcdir) -DSRC_DIR=\"$(top_srcdir)/simgear/sound\"