mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 20:17:49 +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
43 lines
553 B
Makefile
43 lines
553 B
Makefile
MODULE := engines/sword2
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
anims.o \
|
|
console.o \
|
|
controls.o \
|
|
debug.o \
|
|
events.o \
|
|
function.o \
|
|
icons.o \
|
|
interpreter.o \
|
|
layers.o \
|
|
logic.o \
|
|
maketext.o \
|
|
memory.o \
|
|
menu.o \
|
|
mouse.o \
|
|
music.o \
|
|
palette.o \
|
|
protocol.o \
|
|
render.o \
|
|
resman.o \
|
|
router.o \
|
|
saveload.o \
|
|
screen.o \
|
|
scroll.o \
|
|
sound.o \
|
|
speech.o \
|
|
sprite.o \
|
|
startup.o \
|
|
sword2.o \
|
|
sync.o \
|
|
walker.o
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|