diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2002-02-04 19:23:42 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2002-02-04 19:23:42 +0000 |
| commit | b3ea8abeca50df2e24167770d1e7484f1f877a7d (patch) | |
| tree | f52b0378ac88b8ff9690c4e21a65813ff1177ed1 /lib/libbz2 | |
| parent | 9164545f1ea589d7d2f682fd09efd4fa85fd3480 (diff) | |
This commit was manufactured by cvs2svn to create branch 'RELENG_4_4'.
Notes
svn path=/releng/4.4/; revision=90217
Diffstat (limited to 'lib/libbz2')
| -rw-r--r-- | lib/libbz2/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/libbz2/Makefile b/lib/libbz2/Makefile new file mode 100644 index 000000000000..a7abbaac542a --- /dev/null +++ b/lib/libbz2/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +MAINTAINER= obrien@FreeBSD.org + +BZ2DIR= ${.CURDIR}/../../contrib/bzip2 +.PATH: ${BZ2DIR} + +LIB= bz2 +SHLIB_MAJOR= 1 +SHLIB_MINOR= 0 +SRCS= bzlib.c blocksort.c compress.c crctable.c decompress.c \ + huffman.c randtable.c +INCS= bzlib.h +CFLAGS+= -I${BZ2DIR} + +beforeinstall: + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${BZ2DIR}/bzlib.h \ + ${DESTDIR}/usr/include + +.include <bsd.lib.mk> |
