mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-05 01:00:48 +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
40 lines
489 B
Makefile
40 lines
489 B
Makefile
MODULE := engines/agi
|
|
|
|
MODULE_OBJS = \
|
|
agi.o \
|
|
agi_v2.o \
|
|
agi_v3.o \
|
|
checks.o \
|
|
console.o \
|
|
cycle.o \
|
|
font.o \
|
|
global.o \
|
|
graphics.o \
|
|
id.o \
|
|
inv.o \
|
|
keyboard.o \
|
|
logic.o \
|
|
lzw.o \
|
|
menu.o \
|
|
motion.o \
|
|
objects.o \
|
|
op_cmd.o \
|
|
op_dbg.o \
|
|
op_test.o \
|
|
patches.o \
|
|
picture.o \
|
|
savegame.o \
|
|
sound.o \
|
|
sprite.o \
|
|
text.o \
|
|
view.o \
|
|
words.o
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|