blob: f36871c8a5e2361c40b2f49e1a3476194703e64d (
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
31
32
33
34
35
|
MODULE := engines/lab
MODULE_OBJS := \
allocroom.o \
detection.o \
engine.o \
graphics.o \
interface.o \
intro.o \
lab.o \
labfile.o \
labmusic.o \
labsets.o \
machine.o \
map.o \
mouse.o \
processroom.o \
readdiff.o \
resource.o \
savegame.o \
special.o \
text.o \
timing.o \
undiff.o \
vga.o
# This module can be built as a plugin
ifeq ($(ENABLE_LAB), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|