scummvm/engines/lab/module.mk

31 lines
424 B
Makefile
Raw Normal View History

2014-10-06 12:50:05 +00:00
MODULE := engines/lab
MODULE_OBJS := \
2015-12-01 19:10:42 +00:00
anim.o \
2014-10-06 12:50:05 +00:00
detection.o \
engine.o \
2015-12-02 11:04:31 +00:00
eventman.o \
2014-10-06 12:50:05 +00:00
graphics.o \
image.o \
2014-10-06 12:50:05 +00:00
interface.o \
intro.o \
lab.o \
labsets.o \
map.o \
2015-11-30 10:23:44 +00:00
music.o \
2014-10-06 12:50:05 +00:00
processroom.o \
resource.o \
2014-10-06 12:50:05 +00:00
savegame.o \
special.o \
text.o \
tilepuzzle.o \
2015-12-06 13:49:50 +00:00
timing.o
2014-10-06 12:50:05 +00:00
# This module can be built as a plugin
ifeq ($(ENABLE_LAB), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk