mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-22 01:57:16 +00:00
21 lines
306 B
Makefile
21 lines
306 B
Makefile
MODULE := engines/kingdom
|
|
|
|
MODULE_OBJS = \
|
|
kingdom.o \
|
|
constants.o \
|
|
logic1.o \
|
|
logic2.o \
|
|
logic3.o \
|
|
logic4.o \
|
|
logic.o \
|
|
console.o \
|
|
detection.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_KINGDOM), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|