mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
30 lines
408 B
Makefile
30 lines
408 B
Makefile
MODULE := engines/toltecs
|
|
|
|
MODULE_OBJS = \
|
|
animation.o \
|
|
console.o \
|
|
detection.o \
|
|
menu.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
|