blob: 1c2d01580ee34781a0087b4e0d00dda671f40691 (
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
|
MODULE := sword1
MODULE_OBJS := \
sword1/animation.o \
sword1/control.o \
sword1/debug.o \
sword1/eventman.o \
sword1/logic.o \
sword1/memman.o \
sword1/menu.o \
sword1/mouse.o \
sword1/music.o \
sword1/objectman.o \
sword1/resman.o \
sword1/router.o \
sword1/screen.o \
sword1/sound.o \
sword1/staticres.o \
sword1/sword1.o \
sword1/text.o
MODULE_DIRS += \
sword1
# This module can be built as a plugin
ifdef BUILD_PLUGINS
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/common.rules
|