mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-23 10:19:27 +00:00
1758c5b211
svn-id: r17388
37 lines
521 B
Makefile
37 lines
521 B
Makefile
MODULE := gob
|
|
|
|
MODULE_OBJS := \
|
|
gob/anim.o \
|
|
gob/dataio.o \
|
|
gob/debug.o \
|
|
gob/draw.o \
|
|
gob/driver_vga.o \
|
|
gob/game.o \
|
|
gob/global.o \
|
|
gob/goblin.o \
|
|
gob/init.o \
|
|
gob/inter.o \
|
|
gob/map.o \
|
|
gob/mult.o \
|
|
gob/pack.o \
|
|
gob/palanim.o \
|
|
gob/parse.o \
|
|
gob/resource.o \
|
|
gob/scenery.o \
|
|
gob/util.o \
|
|
gob/video.o \
|
|
gob/sound.o \
|
|
gob/timer.o \
|
|
gob/gob.o
|
|
|
|
MODULE_DIRS += \
|
|
gob
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|