mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
23 lines
466 B
Makefile
23 lines
466 B
Makefile
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
noinst_LTLIBRARIES= libbrush.la libbrush_gl.la libbrush_sw.la libbrush_sw32.la
|
|
|
|
libbrush_la_SOURCES= model_brush.c
|
|
|
|
if BUILD_GL
|
|
libbrush_gl_la_SOURCES= gl_model_brush.c model_brush.c
|
|
else
|
|
libbrush_gl_la_SOURCES=
|
|
endif
|
|
|
|
if BUILD_SW
|
|
libbrush_sw_la_SOURCES= sw_model_brush.c model_brush.c
|
|
else
|
|
libbrush_sw_la_SOURCES=
|
|
endif
|
|
|
|
if BUILD_SW32
|
|
libbrush_sw32_la_SOURCES=sw32_model_brush.c model_brush.c
|
|
else
|
|
libbrush_sw32_la_SOURCES=
|
|
endif
|