X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fsound%2FMakefile.am;h=dd271496c22ba5a0be0b92fa2f5779d8892f7c71;hb=f6358694ae8d32cd908408ccacf7ba04adbc3d10;hp=48381175ade36d26083126df6acaff68f3738612;hpb=08581282ddb89dc72762f387ff2b7162f269b7ac;p=simgear.git diff --git a/simgear/sound/Makefile.am b/simgear/sound/Makefile.am index 48381175..dd271496 100644 --- a/simgear/sound/Makefile.am +++ b/simgear/sound/Makefile.am @@ -7,19 +7,22 @@ lib_LIBRARIES = libsgsound.a noinst_HEADERS = include_HEADERS = \ + sample_group.hxx \ sample_openal.hxx \ soundmgr_openal.hxx \ xmlsound.hxx libsgsound_a_SOURCES = \ + sample_group.cxx \ sample_openal.cxx \ soundmgr_openal.cxx \ xmlsound.cxx -noinst_PROGRAMS = openal_test1 openal_test2 +check_PROGRAMS = openal_test1 openal_test2 openal_test3 openal_test1_SOURCES = openal_test1.cxx openal_test2_SOURCES = openal_test2.cxx +openal_test3SOURCES = openal_test3.cxx openal_test1_LDADD = \ $(top_builddir)/simgear/debug/libsgdebug.a \ @@ -27,10 +30,20 @@ openal_test1_LDADD = \ openal_test2_LDADD = \ libsgsound.a \ + $(top_builddir)/simgear/structure/libsgstructure.a \ + $(top_builddir)/simgear/timing/libsgtiming.a \ $(top_builddir)/simgear/debug/libsgdebug.a \ $(top_builddir)/simgear/misc/libsgmisc.a \ + $(top_builddir)/simgear/math/libsgmath.a \ + $(openal_LIBS) + +openal_test3_LDADD = \ + libsgsound.a \ $(top_builddir)/simgear/structure/libsgstructure.a \ - $(openal_LIBS) \ - -lOpenThreads + $(top_builddir)/simgear/timing/libsgtiming.a \ + $(top_builddir)/simgear/debug/libsgdebug.a \ + $(top_builddir)/simgear/misc/libsgmisc.a \ + $(top_builddir)/simgear/math/libsgmath.a \ + $(openal_LIBS) -lstdc++ INCLUDES = -I$(top_srcdir) -DSRC_DIR=\"$(top_srcdir)/simgear/sound\"