dxx-rebirth/2d/makefile

22 lines
476 B
Makefile
Raw Normal View History

2006-03-20 16:43:15 +00:00
TOPDIR = ..
include $(TOPDIR)/makefile.config
OBJECTS = \
palette.$(OBJ) canvas.$(OBJ) \
pixel.$(OBJ) rect.$(OBJ) 2dsline.$(OBJ) line.$(OBJ) \
box.$(OBJ) poly.$(OBJ) disc.$(OBJ) gpixel.$(OBJ) \
font.$(OBJ) bitmap.$(OBJ) bitblt.$(OBJ) pcx.$(OBJ) \
rle.$(OBJ) ibitblt.$(OBJ) \
circle.$(OBJ) tmerge.$(OBJ)
OBJECTS += scalec.$(OBJ)
ifndef NO_ASM
OBJECTS += linear.$(OBJ) tmerge_a.$(OBJ)
endif
2006-04-03 17:32:39 +00:00
OUTPUT = $(LIBDIR)/2d.$(LIB)
2006-03-20 16:43:15 +00:00
include $(TOPDIR)/makefile.lib