mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 23:57:32 +00:00
434a2e66b1
- Replace structs holding function pointers by proper classes - Move each fighter functions to separate files
79 lines
1.5 KiB
Makefile
79 lines
1.5 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/menu.o \
|
|
game/object.o \
|
|
game/savegame.o \
|
|
game/savepoint.o \
|
|
game/scenes.o \
|
|
game/sound.o \
|
|
game/state.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 |