quakeforge/libs/models/brush/Makefile.am

24 lines
466 B
Text
Raw Normal View History

INCLUDES= -I$(top_srcdir)/include
2001-09-28 09:49:09 +00:00
noinst_LTLIBRARIES= libbrush.la libbrush_gl.la libbrush_sw.la libbrush_sw32.la
libbrush_la_SOURCES= model_brush.c
if BUILD_GL
2001-09-28 09:49:09 +00:00
libbrush_gl_la_SOURCES= gl_model_brush.c model_brush.c
else
2001-09-28 09:49:09 +00:00
libbrush_gl_la_SOURCES=
endif
if BUILD_SW
2001-09-28 09:49:09 +00:00
libbrush_sw_la_SOURCES= sw_model_brush.c model_brush.c
else
2001-09-28 09:49:09 +00:00
libbrush_sw_la_SOURCES=
endif
if BUILD_SW32
2001-09-28 09:49:09 +00:00
libbrush_sw32_la_SOURCES=sw32_model_brush.c model_brush.c
else
2001-09-28 09:49:09 +00:00
libbrush_sw32_la_SOURCES=
endif