mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
26 lines
949 B
Makefile
26 lines
949 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
CFLAGS+= @PREFER_PIC@ @VORBIS_CFLAGS@ @OGG_CFLAGS@
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
plugin_version= 1:0:0
|
|
plugin_ldflags= @plugin_ldflags@ -module
|
|
plugin_libadd= @plugin_libadd@
|
|
EXEEXT=
|
|
|
|
plugin_LTLIBRARIES= @SND_REND_TARGETS@
|
|
EXTRA_LTLIBRARIES= snd_render_default.la snd_render_jack.la
|
|
|
|
noinst_LTLIBRARIES= @SND_REND_STATIC@
|
|
|
|
snd_common=snd_channels.c snd_mem.c snd_mix.c snd_resample.c snd_sfx.c \
|
|
flac.c vorbis.c wav.c midi.c
|
|
|
|
snd_render_default_la_LDFLAGS= $(plugin_ldflags)
|
|
snd_render_default_la_SOURCES= snd_dma.c $(snd_common)
|
|
snd_render_default_la_LIBADD= $(VORBISFILE_LIBS) $(VORBIS_LIBS) $(LIBFLAC_LIBS) $(OGG_LIBS) $(WM_LIBS)
|
|
snd_render_default_la_DEPENDENCIES=
|
|
|
|
snd_render_jack_la_LDFLAGS= $(plugin_ldflags)
|
|
snd_render_jack_la_SOURCES= snd_jack.c $(snd_common)
|
|
snd_render_jack_la_LIBADD= $(VORBISFILE_LIBS) $(VORBIS_LIBS) $(LIBFLAC_LIBS) $(OGG_LIBS) $(WM_LIBS) $(JACK_LIBS)
|
|
snd_render_jack_la_DEPENDENCIES=
|