scummvm/engines/cge/module.mk

31 lines
389 B
Makefile
Raw Normal View History

2011-06-07 22:01:44 +00:00
MODULE := engines/cge
2011-06-13 09:57:24 +00:00
2011-06-07 22:01:44 +00:00
MODULE_OBJS := \
bitmap.o \
2011-06-07 22:01:44 +00:00
cge.o \
cge_main.o \
2011-06-07 22:01:44 +00:00
console.o \
detection.o \
events.o \
fileio.o \
game.o \
snail.o \
sound.o \
talk.o \
text.o \
vga13h.o \
vmenu.o \
walk.o
2011-06-07 22:01:44 +00:00
MODULE_DIRS += \
engines/cge
2011-06-13 09:57:24 +00:00
2011-06-07 22:01:44 +00:00
# This module can be built as a plugin
ifeq ($(ENABLE_CGE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
2011-06-13 09:57:24 +00:00
2011-06-07 22:01:44 +00:00
# Include common rules
include $(srcdir)/rules.mk
2011-06-13 09:57:24 +00:00