mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
8004a64c2f
- Added graphics/VectorRenderer.cpp to the build system - Fixed compiling with g++ 4.2 svn-id: r31847
47 lines
672 B
Makefile
47 lines
672 B
Makefile
MODULE := graphics
|
|
|
|
MODULE_OBJS := \
|
|
cursorman.o \
|
|
dxa_player.o \
|
|
font.o \
|
|
fontman.o \
|
|
fonts/consolefont.o \
|
|
fonts/newfont_big.o \
|
|
fonts/newfont.o \
|
|
fonts/scummfont.o \
|
|
iff.o \
|
|
imagedec.o \
|
|
imageman.o \
|
|
mpeg_player.o \
|
|
primitives.o \
|
|
scaler.o \
|
|
scaler/thumbnail.o \
|
|
surface.o \
|
|
VectorRenderer.o
|
|
|
|
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
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|