aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/module.mk
blob: 1fa406f6c8c4d17d275edb7fde1108eaaf49fea9 (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
30
MODULE := engines/cge

MODULE_OBJS := \
	bitmap.o \
	cge.o \
	cge_main.o \
	console.o \
	detection.o \
	events.o \
	fileio.o \
	game.o \
	snail.o \
	sound.o \
	talk.o \
	text.o \
	vga13h.o \
	vmenu.o \
	walk.o

MODULE_DIRS += \
	engines/cge

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

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