diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-07-12 14:44:17 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-07-12 14:44:17 +0000 |
commit | ccc325a5ee60240bcef17c6a4339cac491f190da (patch) | |
tree | 672df976cc519d8e578e8233425a1bcda2a85038 /usr.bin/bzip2 | |
parent | 044b30cecd5485f1256923f172d0b082671e8d21 (diff) | |
download | FreeBSD-src-ccc325a5ee60240bcef17c6a4339cac491f190da.zip FreeBSD-src-ccc325a5ee60240bcef17c6a4339cac491f190da.tar.gz |
Build/install bzip2 documentation (info page).
Diffstat (limited to 'usr.bin/bzip2')
-rw-r--r-- | usr.bin/bzip2/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/bzip2/doc/Makefile | 14 |
2 files changed, 16 insertions, 0 deletions
diff --git a/usr.bin/bzip2/Makefile b/usr.bin/bzip2/Makefile index c2a460c..fd4d2b0 100644 --- a/usr.bin/bzip2/Makefile +++ b/usr.bin/bzip2/Makefile @@ -9,6 +9,8 @@ PROG= bzip2 MAN= bzip2.1 CFLAGS+= -D_FILE_OFFSET_BITS=64 +SUBDIR+= doc + DPADD= ${LIBBZ2} LDADD= -lbz2 diff --git a/usr.bin/bzip2/doc/Makefile b/usr.bin/bzip2/doc/Makefile new file mode 100644 index 0000000..f2cd6b4 --- /dev/null +++ b/usr.bin/bzip2/doc/Makefile @@ -0,0 +1,14 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../contrib/bzip2 + +INFO= bzip2 +INFOSECTION= "Programming & development tools." +MAKEINFOFLAGS= --no-validate + +CLEANFILES+= bzip2.texi + +bzip2.texi: manual.texi + ln -sf ${.ALLSRC} ${.TARGET} + +.include <bsd.info.mk> |