2001-05-10 06:01:11 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
|
2001-05-17 03:48:31 +00:00
|
|
|
if BUILD_GL
|
|
|
|
BRUSH_GL = libbrush_gl.la
|
|
|
|
else
|
|
|
|
BRUSH_GL =
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_SW
|
|
|
|
BRUSH_SW = libbrush_sw.la
|
|
|
|
else
|
|
|
|
BRUSH_SW =
|
|
|
|
endif
|
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
if BUILD_SW32
|
|
|
|
BRUSH_SW32 = libbrush_sw32.la
|
|
|
|
else
|
|
|
|
BRUSH_SW32 =
|
|
|
|
endif
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(BRUSH_GL) $(BRUSH_SW) $(BRUSH_SW32) libbrush.la
|
2001-05-22 20:17:20 +00:00
|
|
|
|
|
|
|
libbrush_la_LDFLAGS = -version-info 1:0:0
|
|
|
|
libbrush_la_SOURCES = model_brush.c
|
2001-05-10 06:01:11 +00:00
|
|
|
|
|
|
|
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
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
libbrush_sw32_la_LDFLAGS = -version-info 1:0:0
|
|
|
|
libbrush_sw32_la_SOURCES = sw32_model_brush.c model_brush.c
|