mirror of
https://github.com/scummvm/scummvm.git
synced 2025-04-02 10:52:32 -04:00
This shaves off a good 800 KB from all the engines. However, do keep local atari debug messages for diagnostic purposes. Also, use natfeats for debug output when possible else the classic stdout/stderr (not both as before).
13 lines
342 B
Makefile
13 lines
342 B
Makefile
MODULE := backends/platform/atari
|
|
|
|
MODULE_OBJS := \
|
|
osystem_atari.o \
|
|
atari-debug.o \
|
|
atari_ikbd.o \
|
|
native_features.o \
|
|
dlmalloc.o
|
|
|
|
# We don't use rules.mk but rather manually update OBJS and MODULE_DIRS.
|
|
MODULE_OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS))
|
|
OBJS := $(MODULE_OBJS) $(OBJS)
|
|
MODULE_DIRS += $(sort $(dir $(MODULE_OBJS)))
|