https://github.com/scummvm/scummvm
Raw File
Tip revision: 3b64e8da3d18f1cbfba4d7ff16db810ae9395929 authored by Johannes Schickel on 24 October 2006, 00:46:36 UTC
Backport of fixes for bugs #1582149 ("KYRA1: Crash when meeting Malcolm") and #1582726 ("KYRA1: Crash when entering Castle screen").
Tip revision: 3b64e8d
module.mk
MODULE := graphics

MODULE_OBJS := \
	animation.o \
	cursorman.o \
	font.o \
	fontman.o \
	fonts/consolefont.o \
	fonts/newfont_big.o \
	fonts/newfont.o \
	fonts/scummfont.o \
	ilbm.o \
	imagedec.o \
	imageman.o \
	paletteman.o \
	primitives.o \
	scaler.o \
	scaler/thumbnail.o \
	surface.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

MODULE_DIRS += \
	graphics \
	graphics/fonts \
	graphics/scaler

# Include common rules 
include $(srcdir)/common.rules
back to top