mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 19:32:11 +00:00
11143d4839
The math utility classes in Common are now used by more than just Bink Video i.e. Huffman is used by SVQ1, RDFT by QDM2 etc. so need to remove conditional inclusion of objects in the Common Library. This was done as these functions are very large wrt. binary size. This is mainly due to the sine, cosine and log tables which should be reconsidered as to whether these are needed or can be replaced by standard sin()/cos() calls.
54 lines
715 B
Makefile
54 lines
715 B
Makefile
MODULE := common
|
|
|
|
MODULE_OBJS := \
|
|
archive.o \
|
|
config-file.o \
|
|
config-manager.o \
|
|
dcl.o \
|
|
debug.o \
|
|
error.o \
|
|
EventDispatcher.o \
|
|
EventMapper.o \
|
|
EventRecorder.o \
|
|
file.o \
|
|
fs.o \
|
|
gui_options.o \
|
|
hashmap.o \
|
|
iff_container.o \
|
|
language.o \
|
|
localization.o \
|
|
macresman.o \
|
|
memorypool.o \
|
|
md5.o \
|
|
mutex.o \
|
|
platform.o \
|
|
quicktime.o \
|
|
random.o \
|
|
rational.o \
|
|
rendermode.o \
|
|
str.o \
|
|
stream.o \
|
|
system.o \
|
|
textconsole.o \
|
|
tokenizer.o \
|
|
translation.o \
|
|
unarj.o \
|
|
unzip.o \
|
|
util.o \
|
|
winexe.o \
|
|
winexe_ne.o \
|
|
winexe_pe.o \
|
|
xmlparser.o \
|
|
zlib.o
|
|
|
|
MODULE_OBJS += \
|
|
cosinetables.o \
|
|
dct.o \
|
|
fft.o \
|
|
huffman.o \
|
|
rdft.o \
|
|
sinetables.o
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|