head	1.12;
access;
symbols
	zlib-1_2_2_4-release:1.11
	zlib-1_2_1_1:1.9
	zlib-1_1_4:1.1.1.2
	pre-zlib-1_1_4:1.1.1.1
	zlib-1_1_3:1.1.1.1
	zlib-1_1_3-vendor:1.1.1;
locks; strict;
comment	@# @;


1.12
date	2005.07.16.15.37.48;	author jbj;	state dead;
branches;
next	1.11;

1.11
date	2005.07.16.15.27.48;	author jbj;	state Exp;
branches;
next	1.10;

1.10
date	2004.08.02.20.56.53;	author jbj;	state dead;
branches;
next	1.9;

1.9
date	2004.08.02.20.19.49;	author jbj;	state Exp;
branches;
next	1.8;

1.8
date	2001.12.27.21.00.17;	author jbj;	state dead;
branches;
next	1.7;

1.7
date	2001.12.20.16.28.47;	author jbj;	state Exp;
branches;
next	1.6;

1.6
date	2001.12.06.18.35.37;	author jbj;	state Exp;
branches;
next	1.5;

1.5
date	2001.11.23.15.49.45;	author jbj;	state Exp;
branches;
next	1.4;

1.4
date	2001.11.21.21.06.35;	author jbj;	state Exp;
branches;
next	1.3;

1.3
date	2001.11.21.21.06.17;	author jbj;	state Exp;
branches;
next	1.2;

1.2
date	2001.11.21.20.36.10;	author jbj;	state Exp;
branches;
next	1.1;

1.1
date	2001.11.21.19.43.12;	author jbj;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2001.11.21.19.43.12;	author jbj;	state Exp;
branches;
next	1.1.1.2;

1.1.1.2
date	2002.03.16.19.56.26;	author jbj;	state Exp;
branches;
next	;


desc
@@


1.12
log
@Re-add autogoo to build from cvs checkout.
@
text
@# Makefile for zlib
# Copyright (C) 1995-2005 Jean-loup Gailly.
# For conditions of distribution and use, see copyright notice in zlib.h

# To compile and test, type:
#    ./configure; make test
# The call of configure is optional if you don't have special requirements
# If you wish to build zlib as a shared library, use: ./configure -s

# To use the asm code, type:
#    cp contrib/asm?86/match.S ./match.S
#    make LOC=-DASMV OBJA=match.o

# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
#    make install
# To install in $HOME instead of /usr/local, use:
#    make install prefix=$HOME

CC=cc

CFLAGS=-O
#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
#CFLAGS=-g -DDEBUG
#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
#           -Wstrict-prototypes -Wmissing-prototypes

LDFLAGS=libz.a
LDSHARED=$(CC)
CPP=$(CC) -E

LIBS=libz.a
SHAREDLIB=libz.so
SHAREDLIBV=libz.so.1.2.2.4
SHAREDLIBM=libz.so.1

AR=ar rc
RANLIB=ranlib
TAR=tar
SHELL=/bin/sh
EXE=

prefix = /usr/local
exec_prefix = ${prefix}
libdir = ${exec_prefix}/lib
includedir = ${prefix}/include
mandir = ${prefix}/share/man
man3dir = ${mandir}/man3

OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
       zutil.o inflate.o infback.o inftrees.o inffast.o

OBJA =
# to use the asm code: make OBJA=match.o

TEST_OBJS = example.o minigzip.o

all: example$(EXE) minigzip$(EXE)

check: test
test: all
	@@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
	echo hello world | ./minigzip | ./minigzip -d || \
	  echo '		*** minigzip test FAILED ***' ; \
	if ./example; then \
	  echo '		*** zlib test OK ***'; \
	else \
	  echo '		*** zlib test FAILED ***'; \
	fi

libz.a: $(OBJS) $(OBJA)
	$(AR) $@@ $(OBJS) $(OBJA)
	-@@ ($(RANLIB) $@@ || true) >/dev/null 2>&1

match.o: match.S
	$(CPP) match.S > _match.s
	$(CC) -c _match.s
	mv _match.o match.o
	rm -f _match.s

$(SHAREDLIBV): $(OBJS)
	$(LDSHARED) -o $@@ $(OBJS)
	rm -f $(SHAREDLIB) $(SHAREDLIBM)
	ln -s $@@ $(SHAREDLIB)
	ln -s $@@ $(SHAREDLIBM)

example$(EXE): example.o $(LIBS)
	$(CC) $(CFLAGS) -o $@@ example.o $(LDFLAGS)

minigzip$(EXE): minigzip.o $(LIBS)
	$(CC) $(CFLAGS) -o $@@ minigzip.o $(LDFLAGS)

install: $(LIBS)
	-@@if [ ! -d $(exec_prefix) ]; then mkdir -p $(exec_prefix); fi
	-@@if [ ! -d $(includedir)  ]; then mkdir -p $(includedir); fi
	-@@if [ ! -d $(libdir)      ]; then mkdir -p $(libdir); fi
	-@@if [ ! -d $(man3dir)     ]; then mkdir -p $(man3dir); fi
	cp zlib.h zconf.h $(includedir)
	chmod 644 $(includedir)/zlib.h $(includedir)/zconf.h
	cp $(LIBS) $(libdir)
	cd $(libdir); chmod 755 $(LIBS)
	-@@(cd $(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1
	cd $(libdir); if test -f $(SHAREDLIBV); then \
	  rm -f $(SHAREDLIB) $(SHAREDLIBM); \
	  ln -s $(SHAREDLIBV) $(SHAREDLIB); \
	  ln -s $(SHAREDLIBV) $(SHAREDLIBM); \
	  (ldconfig || true)  >/dev/null 2>&1; \
	fi
	cp zlib.3 $(man3dir)
	chmod 644 $(man3dir)/zlib.3
# The ranlib in install is needed on NeXTSTEP which checks file times
# ldconfig is for Linux

uninstall:
	cd $(includedir); \
	cd $(libdir); rm -f libz.a; \
	if test -f $(SHAREDLIBV); then \
	  rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \
	fi
	cd $(man3dir); rm -f zlib.3

mostlyclean: clean
clean:
	rm -f *.o *~ example$(EXE) minigzip$(EXE) \
	   libz.* foo.gz so_locations \
	   _match.s maketree contrib/infback9/*.o

maintainer-clean: distclean
distclean: clean
	cp -p Makefile.in Makefile
	cp -p zconf.in.h zconf.h
	rm -f .DS_Store

tags:
	etags *.[ch]

depend:
	makedepend -- $(CFLAGS) -- *.[ch]

# DO NOT DELETE THIS LINE -- make depend depends on it.

adler32.o: zlib.h zconf.h
compress.o: zlib.h zconf.h
crc32.o: crc32.h zlib.h zconf.h
deflate.o: deflate.h zutil.h zlib.h zconf.h
example.o: zlib.h zconf.h
gzio.o: zutil.h zlib.h zconf.h
inffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
inflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
infback.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
inftrees.o: zutil.h zlib.h zconf.h inftrees.h
minigzip.o: zlib.h zconf.h
trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
uncompr.o: zlib.h zconf.h
zutil.o: zutil.h zlib.h zconf.h
@


1.11
log
@Update to zlib-1.2.2.4.
@
text
@@


1.10
log
@Retrofit auocrap.
@
text
@d2 1
a2 1
# Copyright (C) 1995-2003 Jean-loup Gailly.
d33 1
a33 1
SHAREDLIBV=libz.so.1.2.1.1
@


1.9
log
@Update to zlib-1.2.1.1.
@
text
@@


1.8
log
@- simple automake wrappers for zlib.
- expose various comments for doxygen digestification.
@
text
@d2 2
a3 2
# Copyright (C) 1995-1998 Jean-loup Gailly.
# For conditions of distribution and use, see copyright notice in zlib.h 
d6 1
a6 1
#   ./configure; make test
d10 4
d19 1
a19 1
CC=gcc
d21 1
a21 1
CFLAGS=-O3 -fomit-frame-pointer -DWITH_RSYNC_PAD -DHAVE_UNISTD_H -DUSE_MMAP
d27 3
a29 3
LDFLAGS=-L. -lz
LDSHARED=gcc
CPP=gcc -E
a30 1
VER=1.1.3
d33 2
d40 1
d42 6
a47 4
prefix =/usr
exec_prefix =${prefix}
libdir =${exec_prefix}/lib
includedir =${prefix}/include
d50 1
a50 1
       zutil.o inflate.o infblock.o inftrees.o infutil.o inffast.o
d57 1
a57 12
DISTFILES = README FAQ INDEX ChangeLog configure Make*[a-z0-9] *.[ch] *.mms \
  algorithm.txt zlib.3 msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \
  nt/Make*[a-z0-9] nt/zlib.dnt amiga/Make*.??? os2/M*.os2 os2/zlib.def \
  contrib/RE*.contrib contrib/*.txt contrib/asm386/*.asm contrib/asm386/*.c \
  contrib/asm386/*.bat contrib/asm386/zlibvc.d?? contrib/asm[56]86/*.?86 \
  contrib/asm[56]86/*.S contrib/iostream/*.cpp \
  contrib/iostream/*.h  contrib/iostream2/*.h contrib/iostream2/*.cpp \
  contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32 \
  contrib/minizip/[CM]*[pe] contrib/minizip/*.[ch] contrib/minizip/*.[td]?? \
  contrib/delphi*/*.???

all: example minigzip
d59 1
d80 3
a82 3
$(SHAREDLIB).$(VER): $(OBJS)
	$(LDSHARED) -o $@@ $(OBJS) -lc
	rm -f $(SHAREDLIB) $(SHAREDLIB).1
d84 1
a84 1
	ln -s $@@ $(SHAREDLIB).1
d86 1
a86 1
example: example.o $(LIBS)
d89 1
a89 1
minigzip: minigzip.o $(LIBS)
d93 4
a96 2
	-@@if [ ! -d $(includedir)  ]; then mkdir $(includedir); fi
	-@@if [ ! -d $(libdir) ]; then mkdir $(libdir); fi
d102 4
a105 4
	cd $(libdir); if test -f $(SHAREDLIB).$(VER); then \
	  rm -f $(SHAREDLIB) $(SHAREDLIB).1; \
	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB); \
	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB).1; \
d108 2
a114 5
	v=$(VER); \
	if test -f zlib.h; then \
	  v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \
          rm -f zlib.h zconf.h; \
	fi; \
d116 2
a117 2
	if test -f $(SHAREDLIB).$$v; then \
	  rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \
d119 1
d121 1
d123 9
a131 4
	rm -f *.o *~ example minigzip libz.a libz.so* foo.gz so_locations \
	   _match.s maketree

distclean:	clean
d133 1
a133 21
zip:
	mv Makefile Makefile~; cp -p Makefile.in Makefile
	rm -f test.c ztest*.c contrib/minizip/test.zip
	v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\
	zip -ul9 zlib$$v $(DISTFILES)
	mv Makefile~ Makefile

dist:
	mv Makefile Makefile~; cp -p Makefile.in Makefile
	rm -f test.c ztest*.c contrib/minizip/test.zip
	d=zlib-`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\
	rm -f $$d.tar.gz; \
	if test ! -d ../$$d; then rm -f ../$$d; ln -s `pwd` ../$$d; fi; \
	files=""; \
	for f in $(DISTFILES); do files="$$files $$d/$$f"; done; \
	cd ..; \
	GZIP=-9 $(TAR) chofz $$d/$$d.tar.gz $$files; \
	if test ! -d $$d; then rm -f $$d; fi
	mv Makefile~ Makefile

tags:	
a138 8
.PHONY: distdir
distdir:

lclint_files = $(OBJS:%.o=%.c)
.PHONY: lclint
lclint:
	lclint $(lclint_files)

d143 1
a143 1
crc32.o: zlib.h zconf.h crc32.h
d146 4
a149 5
gzio.o: zutil.h zlib.h zconf.h crc32.h
infblock.o: infblock.h inftrees.h infcodes.h infutil.h zutil.h zlib.h zconf.h
inffast.o: zutil.h zlib.h zconf.h inftrees.h crc32.h
inffast.o: infblock.h infcodes.h infutil.h inffast.h
inflate.o: zutil.h zlib.h zconf.h infblock.h
d151 1
a151 2
infutil.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h crc32.h
minigzip.o:  zlib.h zconf.h 
d154 1
a154 1
zutil.o: zutil.h zlib.h zconf.h  
@


1.7
log
@- solaris: translate i86pc to i386 (#57182).
- fix: %GNUconfigure breaks with single quotes (#57264).
- fix: typo in find-requires.
- tru64 compiler message cleanup.
- add buildarch lines for hppa (#57728).
@
text
@@


1.6
log
@- 3 madvise calls and a 16Mb mmapped buffer == ~5% install speedup. Wow.
- use db-4.0.14 final internally.
@
text
@d17 1
a17 1
CFLAGS=-O3 -fomit-frame-pointer -DHAVE_UNISTD_H -DUSE_MMAP
d36 1
a36 1
prefix =/usr/local
@


1.5
log
@- fix a couple dinky memory leaks.
- build with an internal zlib for now.
@
text
@d17 1
a17 1
CFLAGS=-O3 -DHAVE_UNISTD_H -DUSE_MMAP
d36 4
a39 4
prefix = /usr/local
exec_prefix = ${prefix}
libdir = ${exec_prefix}/lib
includedir = ${prefix}/include
@


1.4
log
@Orphan.
@
text
@d155 3
@


1.3
log
@Sanitize the speedup patch a bit.
@
text
@d36 4
a39 4
prefix =/usr/local
exec_prefix =${prefix}
libdir =${exec_prefix}/lib
includedir =${prefix}/include
@


1.2
log
@Painless lclint configuration.
@
text
@d15 1
a15 1
CC=cc
d17 1
a17 1
CFLAGS=-O
d24 2
a25 2
LDSHARED=$(CC)
CPP=$(CC) -E
d36 4
a39 4
prefix = /usr/local
exec_prefix = ${prefix}
libdir = ${exec_prefix}/lib
includedir = ${prefix}/include
d42 1
a42 1
       zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
d83 1
a83 1
	$(LDSHARED) -o $@@ $(OBJS)
d164 1
a164 1
crc32.o: zlib.h zconf.h
d167 1
a167 1
gzio.o: zutil.h zlib.h zconf.h
d169 1
a169 3
infcodes.o: zutil.h zlib.h zconf.h
infcodes.o: inftrees.h infblock.h infcodes.h infutil.h inffast.h
inffast.o: zutil.h zlib.h zconf.h inftrees.h
d173 1
a173 1
infutil.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h
@


1.1
log
@Initial revision
@
text
@d155 5
@


1.1.1.1
log
@track: auto import
@
text
@@


1.1.1.2
log
@track: auto import
@
text
@d2 1
a2 1
# Copyright (C) 1995-2002 Jean-loup Gailly.
d27 1
a27 1
VER=1.1.4
d50 1
a50 2
  algorithm.txt zlib.3 zlib.html \
  msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \
@

