mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-06 18:00:44 +00:00
36 lines
462 B
Makefile
36 lines
462 B
Makefile
MODULE := engines/lab
|
|
|
|
MODULE_OBJS := \
|
|
allocroom.o \
|
|
detection.o \
|
|
engine.o \
|
|
graphics.o \
|
|
interface.o \
|
|
intro.o \
|
|
lab.o \
|
|
labfile.o \
|
|
labsets.o \
|
|
machine.o \
|
|
map.o \
|
|
mouse.o \
|
|
music.o \
|
|
processroom.o \
|
|
readdiff.o \
|
|
resource.o \
|
|
savegame.o \
|
|
special.o \
|
|
text.o \
|
|
timing.o \
|
|
undiff.o \
|
|
vga.o
|
|
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_LAB), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|