mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 09:49:11 +00:00
54c1a1463f
755->644 svn-id: r52177
25 lines
341 B
Makefile
25 lines
341 B
Makefile
MODULE := engines/hugo
|
|
|
|
MODULE_OBJS := \
|
|
detection.o \
|
|
display.o \
|
|
engine.o \
|
|
file.o \
|
|
hugo.o \
|
|
intro.o \
|
|
inventory.o \
|
|
mouse.o \
|
|
parser.o \
|
|
route.o \
|
|
schedule.o \
|
|
sound.o \
|
|
util.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_HUGO), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|