mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 01:39:57 +00:00
56181a475c
svn-id: r45364
26 lines
361 B
Makefile
26 lines
361 B
Makefile
MODULE := engines/made
|
|
|
|
MODULE_OBJS := \
|
|
database.o \
|
|
detection.o \
|
|
graphics.o \
|
|
made.o \
|
|
music.o \
|
|
pmvplayer.o \
|
|
redreader.o \
|
|
resource.o \
|
|
screen.o \
|
|
screenfx.o \
|
|
script.o \
|
|
scriptfuncs.o \
|
|
sound.o
|
|
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_MADE), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|