mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 14:50:17 +00:00
9a955180a4
* Renamed common.rules to rules.mk * Removed explicit declaration of MODULE_DIRS in various spots (instead we let rules.mk compute it) svn-id: r23275
30 lines
391 B
Makefile
30 lines
391 B
Makefile
MODULE := engines/sword1
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
control.o \
|
|
credits.o \
|
|
debug.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
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|