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
30 lines
481 B
Makefile
30 lines
481 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
AM_CFLAGS= @PREFER_PIC@
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
if BUILD_GL
|
|
gl= libbrush_gl.la
|
|
else
|
|
gl=
|
|
endif
|
|
|
|
if BUILD_SW_MOD
|
|
sw= libbrush_sw.la
|
|
else
|
|
sw=
|
|
endif
|
|
|
|
noinst_LTLIBRARIES= libbrush.la $(gl) $(sw)
|
|
|
|
brush_src= model_brush.c
|
|
gl_src= gl_model_brush.c
|
|
sw_src= sw_model_brush.c
|
|
|
|
libbrush_la_SOURCES= $(brush_src)
|
|
|
|
libbrush_gl_la_SOURCES= $(gl_src) $(brush_src)
|
|
|
|
libbrush_sw_la_SOURCES= $(sw_src) $(brush_src)
|
|
|
|
EXTRA_DIST= $(gl_src) $(sw_src) $(brush_src)
|