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

MODULE_OBJS := \
	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