2001-11-12 16:23:41 +00:00
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
2002-08-01 19:49:10 +00:00
|
|
|
AM_CFLAGS= @PREFER_PIC@
|
2001-05-10 06:01:11 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
|
2001-05-17 03:48:31 +00:00
|
|
|
if BUILD_GL
|
2001-10-03 17:50:36 +00:00
|
|
|
gl= libbrush_gl.la
|
2001-05-17 03:48:31 +00:00
|
|
|
else
|
2001-10-03 17:50:36 +00:00
|
|
|
gl=
|
2001-05-17 03:48:31 +00:00
|
|
|
endif
|
|
|
|
|
2001-11-21 19:13:53 +00:00
|
|
|
if BUILD_SW_MOD
|
2001-10-03 17:50:36 +00:00
|
|
|
sw= libbrush_sw.la
|
2001-05-17 03:48:31 +00:00
|
|
|
else
|
2001-10-03 17:50:36 +00:00
|
|
|
sw=
|
2001-05-17 03:48:31 +00:00
|
|
|
endif
|
|
|
|
|
2001-11-21 19:13:53 +00:00
|
|
|
noinst_LTLIBRARIES= libbrush.la $(gl) $(sw)
|
2001-10-03 17:50:36 +00:00
|
|
|
|
|
|
|
brush_src= model_brush.c
|
|
|
|
gl_src= gl_model_brush.c
|
|
|
|
sw_src= sw_model_brush.c
|
|
|
|
|
|
|
|
libbrush_la_SOURCES= $(brush_src)
|
|
|
|
|
|
|
|
libbrush_gl_la_SOURCES= $(gl_src) $(brush_src)
|
|
|
|
|
|
|
|
libbrush_sw_la_SOURCES= $(sw_src) $(brush_src)
|
|
|
|
|
2001-11-21 19:13:53 +00:00
|
|
|
EXTRA_DIST= $(gl_src) $(sw_src) $(brush_src)
|