scummvm/devtools/create_titanic/module.mk
Eugene Sandulenko 933d634c32 CONFIGURE: An (unsuccessful) attempt to add library dependencies to the tools
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
2017-08-13 12:57:32 +02:00

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