mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-01 23:18:44 +00:00
28 lines
511 B
Makefile
28 lines
511 B
Makefile
MODULE := engines/pegasus
|
|
|
|
MODULE_OBJS = \
|
|
console.o \
|
|
credits.o \
|
|
detection.o \
|
|
graphics.o \
|
|
menu.o \
|
|
overview.o \
|
|
pegasus.o \
|
|
video.o \
|
|
Game_Shell/CInventory.o \
|
|
Game_Shell/CItem.o \
|
|
Game_Shell/CItemList.o \
|
|
MMShell/Base_Classes/MMFunctionPtr.o \
|
|
MMShell/Sounds/MMSound.o \
|
|
MMShell/Utilities/MMResourceFile.o \
|
|
MMShell/Utilities/MMUtilities.o
|
|
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_PEGASUS), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|