scummvm/common/module.mk

63 lines
853 B
Makefile
Raw Normal View History

MODULE := common
MODULE_OBJS := \
archive.o \
2024-04-23 20:16:46 -03:00
base64.o \
2024-02-18 09:59:36 +01:00
btea.o \
2022-11-26 11:25:32 +01:00
concatstream.o \
config-manager.o \
coroutines.o \
dbcs-str.o \
debug.o \
engine_data.o \
error.o \
events.o \
file.o \
fs.o \
gui_options.o \
hashmap.o \
language.o \
localization.o \
macresman.o \
memory.o \
memorypool.o \
md5.o \
mutex.o \
osd_message_queue.o \
2021-08-01 19:30:21 -04:00
path.o \
platform.o \
punycode.o \
random.o \
rational.o \
rendermode.o \
str.o \
stream.o \
2014-04-05 18:18:42 +02:00
streamdebug.o \
str-base.o \
str-enc.o \
encodings/singlebyte.o \
system.o \
2010-03-20 12:57:12 +00:00
textconsole.o \
text-to-speech.o \
tokenizer.o \
translation.o \
2020-05-11 19:18:37 +03:00
unicode-bidi.o \
ustr.o \
2010-03-20 12:57:12 +00:00
util.o \
xpfloat.o \
zip-set.o \
std/std.o
2013-05-17 00:18:09 +03:00
ifdef ENABLE_EVENTRECORDER
MODULE_OBJS += \
recorderfile.o
endif
ifdef USE_UPDATES
MODULE_OBJS += \
updates.o
endif
# Include common rules
include $(srcdir)/rules.mk