aboutsummaryrefslogtreecommitdiff
path: root/base/module.mk
blob: 0cf2943e25434a327d46e3f413dcfb880ca2a501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
MODULE := base

MODULE_OBJS := \
	base/engine.o \
	base/gameDetector.o \
	base/main.o \
	base/plugins.o

MODULE_DIRS += \
	base

# Some of the base files depend on the values of the DISABLE_* flags defined
# in config.mak. Hence we add an explicit make dependency on that file.
base/gameDetector.o base/plugins.o: config.mak

# Include common rules 
include common.rules