scummvm/engines/cge2/module.mk

31 lines
411 B
Makefile
Raw Normal View History

MODULE := engines/cge2
MODULE_OBJS = \
cge2.o \
2014-04-26 08:02:00 +02:00
detection.o \
2014-04-29 09:50:40 +02:00
fileio.o \
vga13h.o \
bitmap.o \
sound.o \
cge2_main.o \
2014-05-08 16:51:03 +02:00
text.o \
hero.o \
2014-05-12 22:24:21 +02:00
snail.o \
spare.o \
talk.o \
2014-06-08 09:53:47 +02:00
events.o \
map.o \
vmenu.o \
saveload.o \
toolbar.o \
inventory.o \
console.o
# This module can be built as a plugin
ifeq ($(ENABLE_CGE2), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk