mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-30 21:00:39 +00:00
da76ac5890
svn-id: r12680
21 lines
477 B
Makefile
21 lines
477 B
Makefile
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
|