dxx-rebirth/2d/Makefile.am
2002-02-23 21:36:30 +00:00

27 lines
547 B
Makefile

noinst_LIBRARIES = lib2d.a
INCLUDES = -I $(top_srcdir)/include
if USE_ASM
ASM_SRCS =
else
ASM_SRCS = tmerge.c
endif
lib2d_a_SOURCES = ${ASM_SRCS} \
2dsline.c box.c disc.c ibitblt.c pcx.c rect.c scalec.c \
bitblt.c canvas.c font.c line.c pixel.c rle.c \
bitmap.c circle.c gpixel.c palette.c poly.c
SUFFIXES = .asm
%.o: %.asm
$(NASM) $(NASMFLAGS) $< -o $@
if USE_ASM
lib2d_a_LIBADD = linear.o tmerge_a.o
endif
EXTRA_DIST = \
linear.asm scalea.asm tmerge_a.asm \
bitmap.h clip.h linear.h scalea.h \
scale.c tmerge.c