X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fsound%2FMakefile.am;h=7719f107c4f5c2694cff2c92ff2b87ea2a7147f8;hb=be7065674586ffbb5940ab21a028bc8c461217e2;hp=e421cdef5ca82e20bc200d8801bb1adae00332d2;hpb=6aa459073e412d5ada063858a0f9e8e8c5b5824f;p=simgear.git diff --git a/simgear/sound/Makefile.am b/simgear/sound/Makefile.am index e421cdef..7719f107 100644 --- a/simgear/sound/Makefile.am +++ b/simgear/sound/Makefile.am @@ -7,30 +7,55 @@ lib_LIBRARIES = libsgsound.a noinst_HEADERS = include_HEADERS = \ - sample_openal.hxx \ soundmgr_openal.hxx \ - xmlsound.hxx + sample_group.hxx \ + sample_openal.hxx \ + sample_queue.hxx \ + xmlsound.hxx libsgsound_a_SOURCES = \ - sample_openal.cxx \ soundmgr_openal.cxx \ - xmlsound.cxx - -#noinst_PROGRAMS = openal_test1 openal_test2 - -#openal_test1_SOURCES = openal_test1.cxx -#openal_test2_SOURCES = openal_test2.cxx - -#openal_test1_LDADD = \ -# $(top_builddir)/simgear/debug/libsgdebug.a \ -# $(openal_LIBS) - -#openal_test2_LDADD = \ -# libsgsound.a \ -# $(top_builddir)/simgear/debug/libsgdebug.a \ -# $(top_builddir)/simgear/misc/libsgmisc.a \ -# $(top_builddir)/simgear/structure/libsgstructure.a \ -# $(openal_LIBS) \ -# -lOpenThreads + sample_group.cxx \ + sample_openal.cxx \ + sample_queue.cxx \ + xmlsound.cxx + +check_PROGRAMS = openal_test1 openal_test2 openal_test3 openal_test4 + +openal_test1_SOURCES = openal_test1.cxx +openal_test2_SOURCES = openal_test2.cxx +openal_test3_SOURCES = openal_test3.cxx +openal_test4_SOURCES = openal_test4.cxx + +openal_test1_LDADD = \ + $(top_builddir)/simgear/debug/libsgdebug.a \ + $(openal_LIBS) + +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 \ + $(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++ + +openal_test4_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) -lstdc++ INCLUDES = -I$(top_srcdir) -DSRC_DIR=\"$(top_srcdir)/simgear/sound\"