mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-15 14:28:28 +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
34 lines
437 B
Makefile
34 lines
437 B
Makefile
MODULE := engines/simon
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
charset.o \
|
|
cursor.o \
|
|
debug.o \
|
|
debugger.o \
|
|
draw.o \
|
|
event.o \
|
|
game.o \
|
|
icons.o \
|
|
items.o \
|
|
midi.o \
|
|
midiparser_s1d.o \
|
|
oracle.o \
|
|
res.o \
|
|
saveload.o \
|
|
simon.o \
|
|
sound.o \
|
|
string.o \
|
|
subroutine.o \
|
|
verb.o \
|
|
vga.o \
|
|
window.o \
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|