mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 01:46:42 +00:00
22 lines
331 B
Makefile
22 lines
331 B
Makefile
MODULE := engines/prince
|
|
|
|
MODULE_OBJS = \
|
|
debugger.o \
|
|
script.o \
|
|
graphics.o \
|
|
mhwanh.o \
|
|
detection.o \
|
|
font.o \
|
|
mob.o \
|
|
object.o \
|
|
sound.o \
|
|
prince.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_PRINCE), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|