scummvm/graphics/module.mk
Johannes Schickel 8004a64c2f - Added missing virtual destructor in VectorRenderer
- Added graphics/VectorRenderer.cpp to the build system
- Fixed compiling with g++ 4.2

svn-id: r31847
2008-05-03 21:09:08 +00:00

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