mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-25 21:21:14 +00:00
This proved to be quite the challenge, and is probably rather fragile, but it does seem to work, and might help with tracking down memory leaks.
13 lines
399 B
Text
13 lines
399 B
Text
noinst_PROGRAMS += @AUDIO_TARGETS@
|
|
|
|
EXTRA_PROGRAMS += libs/audio/test/testsound
|
|
|
|
testaudio_libs= \
|
|
libs/audio/libQFsound.la \
|
|
libs/scene/libQFscene.la \
|
|
libs/ruamoko/libQFruamoko.la \
|
|
libs/util/libQFutil.la
|
|
|
|
libs_audio_test_testsound_SOURCES= libs/audio/test/testsound.c $(tracy_src)
|
|
libs_audio_test_testsound_LDADD= $(testaudio_libs)
|
|
libs_audio_test_testsound_DEPENDENCIES= $(testaudio_libs)
|