2001-11-12 16:23:41 +00:00
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
2011-05-10 03:44:44 +00:00
|
|
|
AM_CFLAGS= @PREFER_PIC@
|
2001-05-10 06:01:11 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
|
2012-02-10 04:29:45 +00:00
|
|
|
noinst_LTLIBRARIES= libbrush.la @brush_libs@
|
|
|
|
EXTRA_LTLIBRARIES=libbrush_gl.la libbrush_glsl.la libbrush_sw.la
|
2001-10-03 17:50:36 +00:00
|
|
|
|
|
|
|
brush_src= model_brush.c
|
|
|
|
gl_src= gl_model_brush.c
|
2011-12-23 03:19:13 +00:00
|
|
|
glsl_src= glsl_model_brush.c
|
2001-10-03 17:50:36 +00:00
|
|
|
sw_src= sw_model_brush.c
|
|
|
|
|
|
|
|
libbrush_la_SOURCES= $(brush_src)
|
|
|
|
|
|
|
|
libbrush_gl_la_SOURCES= $(gl_src) $(brush_src)
|
|
|
|
|
2011-12-23 03:19:13 +00:00
|
|
|
libbrush_glsl_la_SOURCES= $(glsl_src) $(brush_src)
|
|
|
|
|
2001-10-03 17:50:36 +00:00
|
|
|
libbrush_sw_la_SOURCES= $(sw_src) $(brush_src)
|
|
|
|
|
2011-12-23 03:19:13 +00:00
|
|
|
EXTRA_DIST= $(gl_src) $(glsl_src) $(sw_src) $(brush_src)
|