]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libz/Makefile
This commit was generated by cvs2svn to compensate for changes in r55682,
[FreeBSD/FreeBSD.git] / lib / libz / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 MAINTAINER=peter@FreeBSD.org
6
7 LIB=            z
8 MAN3=           zlib.3
9
10 #CFLAGS+=       -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
11 #CFLAGS+=       -g -DDEBUG
12 #CFLAGS+=       -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
13 #               -Wstrict-prototypes -Wmissing-prototypes
14
15 CLEANFILES+=    example.o example foo.gz minigzip.o minigzip
16
17 SRCS = adler32.c compress.c crc32.c gzio.c uncompr.c deflate.c trees.c \
18        zutil.c inflate.c infblock.c inftrees.c infcodes.c infutil.c inffast.c
19
20 beforeinstall:
21 .for hdr in zconf.h zlib.h
22         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/${hdr} \
23                 ${DESTDIR}/usr/include
24 .endfor
25
26 minigzip:       all minigzip.o
27         $(CC) -o minigzip minigzip.o -L. -lz
28
29 example:        all example.o
30         $(CC) -o example example.o -L. -lz
31
32 test: example minigzip
33         (export LD_LIBRARY_PATH=. ; ./example )
34         (export LD_LIBRARY_PATH=. ; \
35                 echo hello world | ./minigzip | ./minigzip -d )
36
37 .include <bsd.lib.mk>