mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
except essential Normal1x. Also thumbnails get compiled unconditionally so we get them on all platforms, even those which never display them. Sorted out mess brought to sdl backend by epoc maintainer. He misused __SYMBIAN32__ where DISABLE_SCALERS is more appropriate. svn-id: r18850
47 lines
764 B
Makefile
47 lines
764 B
Makefile
MODULE := common
|
|
|
|
MODULE_OBJS := \
|
|
common/config-file.o \
|
|
common/config-manager.o \
|
|
common/file.o \
|
|
common/md5.o \
|
|
common/mutex.o \
|
|
common/str.o \
|
|
common/stream.o \
|
|
common/timer.o \
|
|
common/util.o \
|
|
common/savefile.o \
|
|
common/system.o \
|
|
common/scaler.o \
|
|
common/scaler/thumbnail.o
|
|
|
|
ifndef DISABLE_SCALERS
|
|
MODULE_OBJS += \
|
|
common/scaler/2xsai.o \
|
|
common/scaler/aspect.o \
|
|
common/scaler/scale2x.o \
|
|
common/scaler/scale3x.o \
|
|
common/scaler/scalebit.o
|
|
|
|
ifndef DISABLE_HQ_SCALERS
|
|
MODULE_OBJS += \
|
|
common/scaler/hq2x.o \
|
|
common/scaler/hq3x.o
|
|
|
|
ifdef HAVE_NASM
|
|
MODULE_OBJS += \
|
|
common/scaler/hq2x_i386.o \
|
|
common/scaler/hq3x_i386.o
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
MODULE_DIRS += \
|
|
common \
|
|
common/scaler
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|