mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-27 19:30:41 +00:00
84 lines
1.6 KiB
Makefile
84 lines
1.6 KiB
Makefile
MODULE := engines/lastexpress
|
|
|
|
MODULE_OBJS := \
|
|
data/animation.o \
|
|
data/archive.o \
|
|
data/background.o \
|
|
data/cursor.o \
|
|
data/font.o \
|
|
data/scene.o \
|
|
data/sequence.o \
|
|
data/snd.o \
|
|
data/subtitle.o \
|
|
entities/entity.o \
|
|
entities/abbot.o \
|
|
entities/alexei.o \
|
|
entities/alouan.o \
|
|
entities/anna.o \
|
|
entities/august.o \
|
|
entities/boutarel.o \
|
|
entities/chapters.o \
|
|
entities/cooks.o \
|
|
entities/coudert.o \
|
|
entities/entity39.o \
|
|
entities/francois.o \
|
|
entities/gendarmes.o \
|
|
entities/hadija.o \
|
|
entities/ivo.o \
|
|
entities/kahina.o \
|
|
entities/kronos.o \
|
|
entities/mahmud.o \
|
|
entities/max.o \
|
|
entities/mertens.o \
|
|
entities/milos.o \
|
|
entities/mmeboutarel.o \
|
|
entities/pascale.o \
|
|
entities/rebecca.o \
|
|
entities/salko.o \
|
|
entities/servers0.o \
|
|
entities/servers1.o \
|
|
entities/sophie.o \
|
|
entities/tables.o \
|
|
entities/tatiana.o \
|
|
entities/train.o \
|
|
entities/vassili.o \
|
|
entities/verges.o \
|
|
entities/vesna.o \
|
|
entities/yasmin.o \
|
|
fight/fight.o \
|
|
fight/fighter.o \
|
|
fight/fighter_anna.o \
|
|
fight/fighter_ivo.o \
|
|
fight/fighter_milos.o \
|
|
fight/fighter_salko.o \
|
|
fight/fighter_vesna.o \
|
|
game/action.o \
|
|
game/beetle.o \
|
|
game/entities.o \
|
|
game/inventory.o \
|
|
game/logic.o \
|
|
game/object.o \
|
|
game/savegame.o \
|
|
game/savepoint.o \
|
|
game/scenes.o \
|
|
game/state.o \
|
|
menu/clock.o \
|
|
menu/menu.o \
|
|
menu/trainline.o \
|
|
sound/entry.o \
|
|
sound/queue.o \
|
|
sound/sound.o \
|
|
debug.o \
|
|
detection.o \
|
|
graphics.o \
|
|
lastexpress.o \
|
|
resource.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_LASTEXPRESS), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|