mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +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
21 lines
547 B
Makefile
21 lines
547 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
AM_CFLAGS= @PREFER_PIC@
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
if BUILD_SW32
|
|
noinst_LTLIBRARIES= libsw32.la
|
|
else
|
|
noinst_LTLIBRARIES=
|
|
endif
|
|
|
|
sw32_src= \
|
|
d_edge.c d_fill.c d_init.c d_modech.c d_part.c d_polyse.c d_scan.c \
|
|
d_sky.c d_sprite.c d_surf.c d_vars.c d_zpoint.c draw.c screen.c \
|
|
sw32_graph.c sw32_raclip.c sw32_ralias.c sw32_rbsp.c sw32_rdraw.c \
|
|
sw32_redge.c sw32_rmain.c sw32_rmisc.c sw32_rpart.c sw32_rsky.c \
|
|
sw32_rsprite.c sw32_rsurf.c sw32_skin.c
|
|
|
|
libsw32_la_SOURCES= $(sw32_src)
|
|
|
|
EXTRA_DIST= $(sw32_src)
|