quakeforge/libs/models/brush/Makefile.am
Bill Currie 4606c6c63a new automake conditionals: BUILD_GL and BUILD_SW for use in places where it
matters (eg, selecting whether to build the gl and or sw specific model code)
2001-05-17 03:48:31 +00:00

21 lines
406 B
Makefile

INCLUDES= -I$(top_srcdir)/include
if BUILD_GL
BRUSH_GL = libbrush_gl.la
else
BRUSH_GL =
endif
if BUILD_SW
BRUSH_SW = libbrush_sw.la
else
BRUSH_SW =
endif
noinst_LTLIBRARIES = $(BRUSH_GL) $(BRUSH_SW)
libbrush_gl_la_LDFLAGS = -version-info 1:0:0
libbrush_gl_la_SOURCES = gl_model_brush.c model_brush.c
libbrush_sw_la_LDFLAGS = -version-info 1:0:0
libbrush_sw_la_SOURCES = sw_model_brush.c model_brush.c