scummvm/engines/gnap/module.mk

33 lines
518 B
Makefile
Raw Normal View History

2014-01-07 21:37:29 +01:00
MODULE := engines/gnap
MODULE_OBJS := \
2016-05-04 07:13:48 +02:00
character.o \
2014-01-07 21:37:29 +01:00
datarchive.o \
2016-04-12 07:26:30 +02:00
debugger.o \
2014-01-07 21:37:29 +01:00
detection.o \
gamesys.o \
gnap.o \
grid.o \
menu.o \
2016-05-12 00:32:31 +02:00
music.o \
2014-01-07 21:37:29 +01:00
resource.o \
sound.o \
scenes/arcade.o \
scenes/groupcs.o \
2016-04-27 07:31:04 +02:00
scenes/group0.o \
scenes/group1.o \
scenes/group2.o \
scenes/group3.o \
scenes/group4.o \
scenes/group5.o \
2016-04-27 07:31:04 +02:00
scenes/intro.o \
2014-01-07 21:37:29 +01:00
scenes/scenecore.o
# This module can be built as a plugin
ifeq ($(ENABLE_GNAP), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk