aboutsummaryrefslogtreecommitdiff
path: root/simon/module.mk
blob: 28878d9ce31d35bb1c54a7141f36e3fc489669d8 (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
MODULE := simon

MODULE_OBJS := \
	simon/charset.o \
	simon/cursor.o \
	simon/debug.o \
	simon/debugger.o \
	simon/icons.o \
	simon/items.o \
	simon/midi.o \
	simon/midiparser_s1d.o \
	simon/res.o \
	simon/saveload.o \
	simon/sound.o \
	simon/simon.o \
	simon/verb.o \
	simon/vga.o \

MODULE_DIRS += \
	simon

# This module can be built as a plugin
ifdef BUILD_PLUGINS
PLUGIN := 1
endif

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