mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-14 16:07:39 +00:00
![aryanrawlani28](/assets/img/avatar_default.png)
For each engine: - Make a new folder detection - Move detection-related files inside the folder - Add a new module "enginename/detection" - Add DETECT_OBJS here - Adjust the normal engine module to remove detect_objs - Adjust every file for the new changes.
30 lines
409 B
Makefile
30 lines
409 B
Makefile
MODULE := engines/toltecs
|
|
|
|
MODULE_OBJS = \
|
|
animation.o \
|
|
console.o \
|
|
menu.o \
|
|
metaengine.o \
|
|
microtiles.o \
|
|
movie.o \
|
|
music.o \
|
|
palette.o \
|
|
toltecs.o \
|
|
render.o \
|
|
resource.o \
|
|
saveload.o \
|
|
screen.o \
|
|
script.o \
|
|
segmap.o \
|
|
sound.o \
|
|
sprite.o
|
|
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_TOLTECS), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|