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

MODULE_OBJS = \
	awe/awe.o \
	awe/bank.o \
	awe/engine.o \
	awe/file.o \
	awe/logic.o \
	awe/resource.o \
	awe/sdlstub.o \
	awe/serializer.o \
	awe/staticres.o \
	awe/util.o \
	awe/video.o

MODULE_DIRS += \
	awe

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

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