aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/module.mk
blob: 5c1a7dd4789d688e71a9c409e99ad348b79ed114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
MODULE := engines/hopkins

MODULE_OBJS := \
	anim.o \
	computer.o \
	debugger.o \
	detection.o \
	dialogs.o \
	events.o \
	files.o \
	font.o \
	graphics.o \
	globals.o \
	hopkins.o \
	lines.o \
	menu.o \
	objects.o \
	saveload.o \
	script.o \
	sound.o \
	talk.o

# This module can be built as a plugin
ifeq ($(ENABLE_HOPKINS), DYNAMIC_PLUGIN)
PLUGIN := 1
endif

# Include common rules
include $(srcdir)/rules.mk