mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
647276b885
svn-id: r39416
30 lines
413 B
Makefile
30 lines
413 B
Makefile
MODULE := engines/sword1
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
control.o \
|
|
debug.o \
|
|
detection.o \
|
|
eventman.o \
|
|
logic.o \
|
|
memman.o \
|
|
menu.o \
|
|
mouse.o \
|
|
music.o \
|
|
objectman.o \
|
|
resman.o \
|
|
router.o \
|
|
screen.o \
|
|
sound.o \
|
|
staticres.o \
|
|
sword1.o \
|
|
text.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_SWORD1), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|