Files
scummvm/backends/platform/atari/module.mk
T
Miro Kropacek 4e4aea1463 BACKENDS: ATARI: Don't call clock() and usleep()
Avoiding overhead when accessing system functions / variables.
2023-04-03 20:19:04 +02:00

13 lines
328 B
Makefile

MODULE := backends/platform/atari
MODULE_OBJS := \
osystem_atari.o \
atari_200hz.o \
atari_ikbd.o \
native_features.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)))