mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-23 18:24:59 +00:00
19 lines
266 B
Makefile
19 lines
266 B
Makefile
|
MODULE := engines/pegasus
|
||
|
|
||
|
MODULE_OBJS = \
|
||
|
detection.o \
|
||
|
graphics.o \
|
||
|
menu.o \
|
||
|
pegasus.o \
|
||
|
sound.o \
|
||
|
video.o
|
||
|
|
||
|
|
||
|
# This module can be built as a plugin
|
||
|
ifeq ($(ENABLE_PEGASUS), DYNAMIC_PLUGIN)
|
||
|
PLUGIN := 1
|
||
|
endif
|
||
|
|
||
|
# Include common rules
|
||
|
include $(srcdir)/rules.mk
|