* config/ren_sfn.prg
* external/minizip/Makefile
* external/zlib/Makefile
* external/sqlite3/Makefile
- external/png/link.txt
* external/png/Makefile
* external/jpeg/Makefile
- external/jpeg/link.txt
- external/bzip2/ren_sfn.txt
* external/bzip2/Makefile
* external/libhpdf/Makefile
- external/libhpdf/ren_sfn.txt
- external/libhpdf/link.txt
- external/pcre/ren_sfn.txt
* external/pcre/Makefile
+ Integrated ren_sfn.txt logic into Makefiles.
+ Add link.txt content into Makefiles.
+ Added links for all libs which didn't have one.
* include/vm.api
- Deleted ULONG casts.
48 lines
831 B
Makefile
48 lines
831 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
LIBNAME := hbzlib
|
|
|
|
# URL: http://zlib.net/zlib125.zip
|
|
|
|
HB_BUILD_WARN := no
|
|
HB_BUILD_MODE := c
|
|
|
|
# Ugly workaround to avoid fatal error when building for pocc64
|
|
ifneq ($(HB_COMPILER),pocc64)
|
|
HB_CFLAGS_DYN := -DZLIB_DLL
|
|
endif
|
|
|
|
C_SOURCES := \
|
|
adler32.c \
|
|
compress.c \
|
|
crc32.c \
|
|
deflate.c \
|
|
gzclose.c \
|
|
gzlib.c \
|
|
gzread.c \
|
|
gzwrite.c \
|
|
infback.c \
|
|
inffast.c \
|
|
inflate.c \
|
|
inftrees.c \
|
|
trees.c \
|
|
uncompr.c \
|
|
zutil.c \
|
|
|
|
ifneq ($(HB_HAS_ZLIB_LOCAL),)
|
|
# To suppress new warnings in version 1.2.5
|
|
ifneq ($(filter $(HB_COMPILER),mingw mingw64 mingwarm cygwin djgpp),)
|
|
HB_CFLAGS += -DNO_VIZ
|
|
endif
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
else
|
|
HB_SKIP_REASON := unused
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|