scummvm/engines/adl/module.mk

25 lines
349 B
Makefile
Raw Normal View History

2016-02-26 23:32:06 +01:00
MODULE := engines/adl
MODULE_OBJS := \
adl.o \
adl_v2.o \
2016-02-26 23:32:06 +01:00
detection.o \
display.o \
2016-03-13 11:43:48 +01:00
graphics.o \
graphics_v1.o \
graphics_v2.o \
2016-03-10 10:46:06 +01:00
hires1.o \
2016-03-15 20:06:03 +01:00
hires2.o \
speaker.o
2016-02-26 23:32:06 +01:00
MODULE_DIRS += \
engines/adl
# This module can be built as a plugin
ifeq ($(ENABLE_ADL), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk