* common.mak
* make_b32.mak
* make_vc.mak
* make_vcce.mak
* make_gcc.mak
* source/Makefile
+ source/hbzlib
+ source/hbzlib/ChangeLog
+ source/hbzlib/adler32.c
+ source/hbzlib/compress.c
+ source/hbzlib/crc32.c
+ source/hbzlib/crc32.h
+ source/hbzlib/deflate.c
+ source/hbzlib/deflate.h
+ source/hbzlib/gzio.c
+ source/hbzlib/infback.c
+ source/hbzlib/inffast.c
+ source/hbzlib/inffast.h
+ source/hbzlib/inffixed.h
+ source/hbzlib/inflate.c
+ source/hbzlib/inflate.h
+ source/hbzlib/inftrees.c
+ source/hbzlib/inftrees.h
+ source/hbzlib/Makefile
+ source/hbzlib/trees.c
+ source/hbzlib/trees.h
+ source/hbzlib/uncompr.c
+ source/hbzlib/zconf.h
+ source/hbzlib/zlib.h
+ source/hbzlib/zutil.c
+ source/hbzlib/zutil.h
+ Added unmodified ZLIB sources to Harbour core.
+ Added them to make systems.
; Work in progress.
24 lines
259 B
Makefile
24 lines
259 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
C_SOURCES=\
|
|
adler32.c \
|
|
compress.c \
|
|
crc32.c \
|
|
deflate.c \
|
|
gzio.c \
|
|
infback.c \
|
|
inffast.c \
|
|
inflate.c \
|
|
inftrees.c \
|
|
trees.c \
|
|
uncompr.c \
|
|
zutil.c \
|
|
|
|
LIBNAME=hbzlib
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|