mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
933d634c32
For some reason I cannot figure out how to enforce proper variable creation in a generic way. I'll keep reading the docs but maybe someone else could figure it out earlier
31 lines
467 B
Makefile
31 lines
467 B
Makefile
|
|
ifdef USE_ZLIB
|
|
|
|
MODULE := devtools/create_titanic
|
|
|
|
MODULE_OBJS := \
|
|
create_titanic_dat.o \
|
|
hashmap.o \
|
|
memorypool.o \
|
|
script_preresponses.o \
|
|
script_quotes.o \
|
|
script_ranges.o \
|
|
script_responses.o \
|
|
script_states.o \
|
|
str.o \
|
|
tag_maps.o \
|
|
winexe.o \
|
|
winexe_pe.o \
|
|
zlib.o
|
|
|
|
# Set the name of the executable
|
|
TOOL_EXECUTABLE := create_titanic
|
|
|
|
TOOL_CFLAGS := $(ZLIB_CFLAGS)
|
|
TOOL_LIBS := $(ZLIB_LIBS)
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
endif
|