scummvm/engines/adl/module.mk

30 lines
408 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-04-10 10:35:10 +02:00
adl_v3.o \
2016-03-26 23:26:22 +01:00
console.o \
2016-02-26 23:32:06 +01:00
detection.o \
2016-03-23 11:11:37 +01:00
disk.o \
2016-02-26 23:32:06 +01:00
display.o \
2016-03-13 11:43:48 +01:00
graphics.o \
graphics_v1.o \
graphics_v2.o \
hires0.o \
2016-03-10 10:46:06 +01:00
hires1.o \
2016-03-15 20:06:03 +01:00
hires2.o \
2016-04-08 12:35:23 +02:00
hires6.o \
2016-03-15 20:06:03 +01:00
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