mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 13:42:02 +00:00
42 lines
711 B
Makefile
42 lines
711 B
Makefile
MODULE := engines/access
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
asurface.o \
|
|
access.o \
|
|
bubble_box.o \
|
|
char.o \
|
|
data.o \
|
|
debugger.o \
|
|
decompress.o \
|
|
detection.o \
|
|
events.o \
|
|
files.o \
|
|
font.o \
|
|
inventory.o \
|
|
player.o \
|
|
resources.o \
|
|
room.o \
|
|
screen.o \
|
|
scripts.o \
|
|
sound.o \
|
|
video.o \
|
|
amazon/amazon_game.o \
|
|
amazon/amazon_logic.o \
|
|
amazon/amazon_player.o \
|
|
amazon/amazon_resources.o \
|
|
amazon/amazon_room.o \
|
|
amazon/amazon_scripts.o \
|
|
martian/martian_game.o \
|
|
martian/martian_resources.o \
|
|
martian/martian_room.o \
|
|
martian/martian_scripts.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_ACCESS), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|