mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-05 02:17:05 +00:00
17 lines
261 B
Makefile
17 lines
261 B
Makefile
|
MODULE := engines/macventure
|
||
|
|
||
|
MODULE_OBJS := \
|
||
|
detection.o \
|
||
|
macventure.o
|
||
|
|
||
|
MODULE_DIRS += \
|
||
|
engines/macventure
|
||
|
|
||
|
# This module can be built as a plugin
|
||
|
ifeq ($(ENABLE_WAGE), DYNAMIC_PLUGIN)
|
||
|
PLUGIN := 1
|
||
|
endif
|
||
|
|
||
|
# Include common rules
|
||
|
include $(srcdir)/rules.mk
|