mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
9cc30959e4
thinking :) set fs_pluginpath to point to the right dir, and set snd_plugin to pick a sound plugin. Current issues: - alsa 0.5 won't build properly, dunno why - segfault on exit. I think I know the cause of this, and how to fix it - alsa 0.9, gus, sgi, sun, and win32 havn't been tested
15 lines
425 B
Makefile
15 lines
425 B
Makefile
SUBDIRS= cd targets
|
|
|
|
clean-local:
|
|
rm -f *.a
|
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
lib_LTLIBRARIES = libQFsound.la
|
|
|
|
libQFsound_la_SOURCES= snd_common.c snd.c
|
|
libQFsound_la_LDFLAGS = -version-info 1:0:0
|
|
libQFsound.la: $(libQFsound_la_OBJECTS) $(libQFsound_la_DEPENDENCIES)
|
|
$(LINK) -rpath $(libdir) $(libQFsound_la_LDFLAGS) $(libQFsound_la_OBJECTS) $(libQFsound_la_LIBADD) $(LIBS)
|
|
|
|
LIBLIST = libQFsound.la @LIBRARY_SEARCH_PATH@
|