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