18 lines
276 B
Makefile
Raw Normal View History

2016-06-03 21:58:25 +02:00
MODULE := engines/macventure
MODULE_OBJS := \
detection.o \
2016-06-08 11:02:21 +02:00
gui.o \
2016-06-03 21:58:25 +02:00
macventure.o
MODULE_DIRS += \
engines/macventure
# This module can be built as a plugin
ifeq ($(ENABLE_MACVENTURE), DYNAMIC_PLUGIN)
2016-06-03 21:58:25 +02:00
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk