mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-16 00:45:27 +02:00
18 lines
712 B
Plaintext
18 lines
712 B
Plaintext
# ***************************************************************************
|
|
# ZLIB_FLAGS.msvc (!INCLUDE ed by "makefile-dllmod.msvc")
|
|
# --------------------------------------------------------------------------
|
|
# (c) Copyright Roger Bowler, 2005-2007
|
|
# --------------------------------------------------------------------------
|
|
#
|
|
# Sets ZLIB-compression-related compiler/linker flags & #defines...
|
|
#
|
|
# ***************************************************************************
|
|
|
|
!IFDEF ZLIB_DIR
|
|
ZLIB_DLL = $(ZLIB_DIR)\zlib1.dll
|
|
ZLIB_LIB = $(ZLIB_DIR)/lib/zdll.lib
|
|
ZLIB_INC = $(ZLIB_DIR)/include
|
|
LIBS = $(LIBS) "$(ZLIB_LIB)"
|
|
cflags = $(cflags) /D HAVE_LIBZ /D HAVE_ZLIB_H /I"$(ZLIB_INC)"
|
|
!ENDIF
|