aboutsummaryrefslogtreecommitdiff
path: root/base/module.mk
blob: 9aad4e6bb0c05386596319dbbd4430fed806bd47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.
#
# Temporarily disabled since it causes troubles for MinGW - and
# will break Makefile.noconf
#base/gameDetector.o base/plugins.o: config.mak

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