mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-12 14:09:28 +00:00
![Torbjörn Andersson](/assets/img/avatar_default.png)
copy protection if we know there were versions sold that either didn't have the protection, or failed to include the information needed to get past it. Besides, this particular bypassing doesn't work. The game appears to start just fine, but the transporter early in the game is rendered non-functional. svn-id: r23801
32 lines
397 B
Makefile
32 lines
397 B
Makefile
MODULE := engines/cine
|
|
|
|
MODULE_OBJS = \
|
|
anim.o \
|
|
bg.o \
|
|
bg_list.o \
|
|
cine.o \
|
|
font.o \
|
|
gfx.o \
|
|
main_loop.o \
|
|
msg.o \
|
|
object.o \
|
|
pal.o \
|
|
part.o \
|
|
prc.o \
|
|
rel.o \
|
|
resource.o \
|
|
script.o \
|
|
sfx_player.o \
|
|
sound_driver.o \
|
|
texte.o \
|
|
unpack.o \
|
|
various.o
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|