2004-03-21 21:20:25 +00:00
|
|
|
MODULE := graphics
|
|
|
|
|
|
|
|
MODULE_OBJS := \
|
2006-05-25 22:51:42 +00:00
|
|
|
cursorman.o \
|
2006-02-12 00:16:31 +00:00
|
|
|
font.o \
|
|
|
|
fontman.o \
|
2006-02-20 20:42:03 +00:00
|
|
|
fonts/consolefont.o \
|
|
|
|
fonts/newfont_big.o \
|
|
|
|
fonts/newfont.o \
|
|
|
|
fonts/scummfont.o \
|
2007-05-01 15:39:40 +00:00
|
|
|
iff.o \
|
2006-02-20 20:29:02 +00:00
|
|
|
imagedec.o \
|
|
|
|
imageman.o \
|
2006-02-12 00:16:31 +00:00
|
|
|
primitives.o \
|
2006-02-20 20:29:02 +00:00
|
|
|
scaler.o \
|
2008-08-20 15:58:52 +00:00
|
|
|
scaler/thumbnail_intern.o \
|
2008-05-03 21:09:08 +00:00
|
|
|
surface.o \
|
2008-09-20 12:28:45 +00:00
|
|
|
thumbnail.o \
|
2008-08-31 13:51:48 +00:00
|
|
|
VectorRenderer.o \
|
2008-12-21 21:08:17 +00:00
|
|
|
VectorRendererSpec.o \
|
|
|
|
video/dxa_player.o \
|
|
|
|
video/flic_player.o \
|
|
|
|
video/mpeg_player.o \
|
|
|
|
video/smk_player.o
|
2006-02-20 20:29:02 +00:00
|
|
|
|
|
|
|
ifndef DISABLE_SCALERS
|
|
|
|
MODULE_OBJS += \
|
|
|
|
scaler/2xsai.o \
|
|
|
|
scaler/aspect.o \
|
|
|
|
scaler/scale2x.o \
|
|
|
|
scaler/scale3x.o \
|
|
|
|
scaler/scalebit.o
|
|
|
|
|
|
|
|
ifndef DISABLE_HQ_SCALERS
|
|
|
|
MODULE_OBJS += \
|
|
|
|
scaler/hq2x.o \
|
|
|
|
scaler/hq3x.o
|
|
|
|
|
|
|
|
ifdef HAVE_NASM
|
|
|
|
MODULE_OBJS += \
|
|
|
|
scaler/hq2x_i386.o \
|
|
|
|
scaler/hq3x_i386.o
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
2004-03-21 21:20:25 +00:00
|
|
|
|
2008-01-27 19:47:41 +00:00
|
|
|
# Include common rules
|
2006-06-24 08:48:11 +00:00
|
|
|
include $(srcdir)/rules.mk
|