mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
baac293911
svn-id: r24103
36 lines
456 B
Makefile
36 lines
456 B
Makefile
MODULE := engines/agos
|
|
|
|
MODULE_OBJS := \
|
|
agos.o \
|
|
animation.o \
|
|
charset.o \
|
|
contain.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 \
|
|
rooms.o \
|
|
saveload.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
|