* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
90 lines
1.7 KiB
Makefile
90 lines
1.7 KiB
Makefile
|
|
ROOT := ../../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
LIBNAME := hbzlib
|
|
|
|
HB_BUILD_WARN := no
|
|
HB_BUILD_MODE := c
|
|
|
|
# Ugly workaround to avoid fatal error when building for pocc64 (6.x)
|
|
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
|
|
else
|
|
ifneq ($(filter $(HB_PLATFORM),aix),)
|
|
HB_CFLAGS += -DNO_VIZ
|
|
endif
|
|
endif
|
|
ifneq ($(filter $(HB_PLATFORM),wce),)
|
|
HB_CFLAGS += -D_WINCE
|
|
endif
|
|
ifeq ($(filter $(HB_PLATFORM),win wce),)
|
|
HB_CFLAGS += -DHAVE_UNISTD_H
|
|
else
|
|
ifneq ($(filter $(HB_COMPILER),watcom),)
|
|
HB_CFLAGS += -DHAVE_UNISTD_H
|
|
endif
|
|
endif
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
else
|
|
HB_SKIP_REASON := unused
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|
|
|
|
# ORIGIN http://zlib.net/
|
|
# VER 1.2.7
|
|
# URL http://prdownloads.sourceforge.net/libpng/zlib127.zip?download
|
|
# DIFF zlib.dif
|
|
#
|
|
# MAP README
|
|
# MAP adler32.c
|
|
# MAP compress.c
|
|
# MAP crc32.c
|
|
# MAP crc32.h
|
|
# MAP deflate.c
|
|
# MAP deflate.h
|
|
# MAP gzclose.c
|
|
# MAP gzguts.h
|
|
# MAP gzlib.c
|
|
# MAP gzread.c
|
|
# MAP gzwrite.c
|
|
# MAP infback.c
|
|
# MAP inffast.c
|
|
# MAP inffast.h
|
|
# MAP inffixed.h
|
|
# MAP inflate.c
|
|
# MAP inflate.h
|
|
# MAP inftrees.c
|
|
# MAP inftrees.h
|
|
# MAP trees.c
|
|
# MAP trees.h
|
|
# MAP uncompr.c
|
|
# MAP zconf.h
|
|
# MAP zlib.h
|
|
# MAP zutil.c
|
|
# MAP zutil.h
|