mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
eee1aaf283
to force off, defaults to off for *nix and on for win32). does not work yet due to lack of support in libs/util/plugin.c, but that's next.
15 lines
562 B
Makefile
15 lines
562 B
Makefile
SUBDIRS=cd targets renderer
|
|
INCLUDES=-I$(top_srcdir)/include
|
|
|
|
lib_LTLIBRARIES= @CD_TARGETS@ @SND_TARGETS@
|
|
EXTRA_LTLIBRARIES= libQFsound.la libQFcd.la
|
|
|
|
libQFsound_la_LDFLAGS= -version-info 1:0:0 -rpath $(libdir)
|
|
libQFsound_la_LIBADD= @SND_PLUGIN_STATIC_LIBS@ @SND_REND_STATIC_LIBS@
|
|
libQFsound_la_SOURCES= snd.c
|
|
libQFsound_la_DEPENDENCIES= @SND_PLUGIN_STATIC_LIBS@ @SND_REND_STATIC_LIBS@
|
|
|
|
libQFcd_la_LDFLAGS= -version-info 1:0:0 -rpath $(libdir)
|
|
libQFcd_la_LIBADD= @CD_PLUGIN_STATIC_LIBS@
|
|
libQFcd_la_SOURCES= cd.c
|
|
libQFcd_la_DEPENDENCIES= @CD_PLUGIN_STATIC_LIBS@
|