mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-02 23:26:44 +00:00
592cca5402
OSD is now using the kGUIFont instead. The main advantage is that the kGUIFont can be used for translated text while only ASCII characters were present in ScummFont.
63 lines
914 B
Makefile
63 lines
914 B
Makefile
MODULE := graphics
|
|
|
|
MODULE_OBJS := \
|
|
conversion.o \
|
|
cursorman.o \
|
|
dither.o \
|
|
font.o \
|
|
fontman.o \
|
|
fonts/consolefont.o \
|
|
fonts/newfont_big.o \
|
|
fonts/newfont.o \
|
|
fonts/winfont.o \
|
|
iff.o \
|
|
imagedec.o \
|
|
jpeg.o \
|
|
maccursor.o \
|
|
pict.o \
|
|
png.o \
|
|
primitives.o \
|
|
scaler.o \
|
|
scaler/thumbnail_intern.o \
|
|
sjis.o \
|
|
surface.o \
|
|
thumbnail.o \
|
|
VectorRenderer.o \
|
|
VectorRendererSpec.o \
|
|
wincursor.o \
|
|
yuv_to_rgb.o
|
|
|
|
ifdef USE_SCALERS
|
|
MODULE_OBJS += \
|
|
scaler/2xsai.o \
|
|
scaler/aspect.o \
|
|
scaler/downscaler.o \
|
|
scaler/scale2x.o \
|
|
scaler/scale3x.o \
|
|
scaler/scalebit.o
|
|
|
|
ifdef USE_ARM_SCALER_ASM
|
|
MODULE_OBJS += \
|
|
scaler/downscalerARM.o \
|
|
scaler/scale2xARM.o \
|
|
scaler/Normal2xARM.o
|
|
endif
|
|
|
|
ifdef USE_HQ_SCALERS
|
|
MODULE_OBJS += \
|
|
scaler/hq2x.o \
|
|
scaler/hq3x.o
|
|
|
|
ifdef USE_NASM
|
|
MODULE_OBJS += \
|
|
scaler/hq2x_i386.o \
|
|
scaler/hq3x_i386.o
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|