* common.mak
* include/Makefile
+ include/hbzlib.ch
+ include/hbzlib.h
* include/hbextern.ch
+ source/rtl/hbzlib.c
* source/rtl/Makefile
* contrib/make_b32_all.bat
* contrib/make_vc_all.bat
* contrib/make_gcc_all.sh
* contrib/Makefile
+ contrib/hbmzip
+ contrib/hbmzip/Makefile
+ contrib/hbmzip/common.mak
+ contrib/hbmzip/make_b32.bat
+ contrib/hbmzip/make_vc.bat
+ contrib/hbmzip/make_gcc.sh
+ contrib/hbmzip/hbmzip.ch
+ contrib/hbmzip/ioapi.c
+ contrib/hbmzip/zip.c
+ contrib/hbmzip/unzip.c
+ contrib/hbmzip/ioapi.h
+ contrib/hbmzip/crypt.h
+ contrib/hbmzip/zip.h
+ contrib/hbmzip/unzip.h
+ contrib/hbmzip/hbmzip.c
+ contrib/hbmzip/readme.txt
+ contrib/hbmzip/tests
+ contrib/hbmzip/tests/bld_b32.bat
+ contrib/hbmzip/tests/bld_vc.bat
+ contrib/hbmzip/tests/myzip.prg
+ contrib/hbmzip/tests/myunzip.prg
+ Added hbzlib.h which is a simple wrapper to source/hbzlib/zlib.h.
* Moved ZLIB specific Harbour wrappers and header from /contrib/hbzlib
to /source/rtl.
+ Added /contrib/hbmzip lib based on /contrib/hbzlib.
Copy + modify was used to keep the repo history.
hbmzip contains all the MiniZip parts from former /contrib/hbzlib.
New hbmzip header file: hbmzip.ch
+ Added new Harbour level zip functions to hbextern.ch.
; TODO: Remove /contrib/hbzlib, add core hbzlib to lib lists.
123 lines
1.8 KiB
Makefile
123 lines
1.8 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../
|
|
|
|
C_HEADERS=\
|
|
clipdefs.h \
|
|
extend.h \
|
|
hbapi.h \
|
|
hbapicdp.h \
|
|
hbapicls.h \
|
|
hbapidbg.h \
|
|
hbapierr.h \
|
|
hbapifs.h \
|
|
hbapigt.h \
|
|
hbapiitm.h \
|
|
hbapilng.h \
|
|
hbapirdd.h \
|
|
hbassert.h \
|
|
hbchksum.h \
|
|
hbcomp.h \
|
|
hbcompdf.h \
|
|
hbdate.h \
|
|
hbdbf.h \
|
|
hbdbferr.h \
|
|
hbdbsort.h \
|
|
hbdefs.h \
|
|
hberrors.h \
|
|
hbexprop.h \
|
|
hbfixdj.h \
|
|
hbgtcore.h \
|
|
hbhash.h \
|
|
hbinit.h \
|
|
hbmacro.h \
|
|
hbmath.h \
|
|
hbpcode.h \
|
|
hbpp.h \
|
|
hbrddcdx.h \
|
|
hbrdddbf.h \
|
|
hbrdddbt.h \
|
|
hbrddfpt.h \
|
|
hbrdddel.h \
|
|
hbrddntx.h \
|
|
hbrddsdf.h \
|
|
hbregex.h \
|
|
hbset.h \
|
|
hbsetup.h \
|
|
hbstack.h \
|
|
hbsxfunc.h \
|
|
hbtrace.h \
|
|
hbtypes.h \
|
|
hbver.h \
|
|
hbvm.h \
|
|
hbvmopt.h \
|
|
hbvmpub.h \
|
|
hbxvm.h \
|
|
hbwince.h \
|
|
hbwmain.c \
|
|
hbzlib.h \
|
|
hb_io.h \
|
|
|
|
PRG_HEADERS=\
|
|
achoice.ch \
|
|
assert.ch \
|
|
box.ch \
|
|
button.ch \
|
|
blob.ch \
|
|
color.ch \
|
|
common.ch \
|
|
dbedit.ch \
|
|
dbinfo.ch \
|
|
dbstruct.ch \
|
|
directry.ch \
|
|
error.ch \
|
|
fileio.ch \
|
|
getexit.ch \
|
|
hbclass.ch \
|
|
hbcommon.ch \
|
|
hbdebug.ch \
|
|
hbextern.ch \
|
|
hbgetcmt.ch \
|
|
hbgfx.ch \
|
|
hbgfxdef.ch \
|
|
hbgtinfo.ch \
|
|
hbinkey.ch \
|
|
hblang.ch \
|
|
hbmacro.ch \
|
|
hbmath.ch \
|
|
hbmemory.ch \
|
|
hbmemvar.ch \
|
|
hboo.ch \
|
|
hbpers.ch \
|
|
hbsetup.ch \
|
|
hbsix.ch \
|
|
hbstdgen.ch \
|
|
hbusrrdd.ch \
|
|
hbzlib.ch \
|
|
inkey.ch \
|
|
memoedit.ch \
|
|
ord.ch \
|
|
rddsys.ch \
|
|
reserved.ch \
|
|
set.ch \
|
|
setcurs.ch \
|
|
simpleio.ch \
|
|
std.ch \
|
|
hbsxdef.ch \
|
|
tbrowse.ch \
|
|
|
|
API_HEADERS=\
|
|
error.api \
|
|
extend.api \
|
|
filesys.api \
|
|
fm.api \
|
|
gt.api \
|
|
hbundoc.api \
|
|
item.api \
|
|
rdd.api \
|
|
vm.api \
|
|
|
|
include $(TOP)$(ROOT)config/header.cf
|