quakeforge/libs/audio/test/Makefile.am
Bill Currie 3cb4cb59b5 Link QFgamecode directly into QFruamoko.
First step in the library "merge down".

QFgamecode is now a convenience library. The only things that mention it
directly now are ruamoko and qfcc.
2012-02-13 15:05:31 +09:00

16 lines
369 B
Makefile

AUTOMAKE_OPTIONS= foreign
INCLUDES= -I$(top_srcdir)/include
noinst_PROGRAMS= @AUDIO_TARGETS@
EXTRA_PROGRAMS= testsound
test_libs= \
$(top_builddir)/libs/audio/libQFsound.la \
$(top_builddir)/libs/ruamoko/libQFruamoko.la \
$(top_builddir)/libs/util/libQFutil.la
testsound_SOURCES= testsound.c
testsound_LDADD= $(test_libs)
testsound_DEPENDENCIES= $(test_libs)