mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
31 lines
420 B
Makefile
31 lines
420 B
Makefile
MODULE := engines/fullpipe
|
|
|
|
MODULE_OBJS = \
|
|
behavior.o \
|
|
detection.o \
|
|
fullpipe.o \
|
|
gameloader.o \
|
|
gfx.o \
|
|
init.o \
|
|
input.o \
|
|
interaction.o \
|
|
inventory.o \
|
|
messages.o \
|
|
modal.o \
|
|
motion.o \
|
|
ngiarchive.o \
|
|
scene.o \
|
|
scenes.o \
|
|
sound.o \
|
|
stateloader.o \
|
|
statics.o \
|
|
utils.o
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|