mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
24 lines
353 B
Makefile
24 lines
353 B
Makefile
MODULE := engines/voyeur
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
data.o \
|
|
debugger.o \
|
|
detection.o \
|
|
events.o \
|
|
files.o \
|
|
files_threads.o \
|
|
screen.o \
|
|
sound.o \
|
|
staticres.o \
|
|
voyeur.o \
|
|
voyeur_game.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_VOYEUR), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|