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
|
2001-06-05 17:23:03 +00:00
|
|
|
AM_CFLAGS = $(GLX_CFLAGS)
|
2001-05-17 03:48:31 +00:00
|
|
|
else
|
|
|
|
BRUSH_GL =
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_SW
|
|
|
|
BRUSH_SW = libbrush_sw.la
|
|
|
|
else
|
|
|
|
BRUSH_SW =
|
|
|
|
endif
|
|
|
|
|
2001-05-22 20:17:20 +00:00
|
|
|
noinst_LTLIBRARIES = $(BRUSH_GL) $(BRUSH_SW) libbrush.la
|
|
|
|
|
|
|
|
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
|