mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
3cb4cb59b5
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.
16 lines
369 B
Makefile
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)
|