mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
2ce0f2ded2
This gives us a bunch more flexibility. plugins no longer have the "lib" prefix or the version suffix, they're now installed in $fs_sharepath/QFplugins,, builds should take much less time (in general, only one of pic or non-pic versions are build), bins and libs can have individual CFLAGS
18 lines
613 B
Makefile
18 lines
613 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
SUBDIRS=cd targets renderer
|
|
AM_CFLAGS= @PREFER_PIC@
|
|
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@
|