diff options
author | peter <peter@FreeBSD.org> | 1995-10-29 09:08:35 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-10-29 09:08:35 +0000 |
commit | 3ad56373bbfdb8c0681b3d91c9cb4493d4044e8e (patch) | |
tree | 03c4b83fd401213e1f04742408f5f741d15372be /gnu/usr.bin/diff | |
parent | 8da0499075a999239b4ffdaf8ce0ccd78a8efa7b (diff) | |
download | FreeBSD-src-3ad56373bbfdb8c0681b3d91c9cb4493d4044e8e.zip FreeBSD-src-3ad56373bbfdb8c0681b3d91c9cb4493d4044e8e.tar.gz |
Build and install diff.info..
As Bruce said, this is a little bogus, it'd be nice if bsd.prog.mk knew
about .texi in the same way as it does man pages..
Submitted by: bde
Diffstat (limited to 'gnu/usr.bin/diff')
-rw-r--r-- | gnu/usr.bin/diff/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/diff/doc/Makefile | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gnu/usr.bin/diff/Makefile b/gnu/usr.bin/diff/Makefile index 717a247..a6bc385 100644 --- a/gnu/usr.bin/diff/Makefile +++ b/gnu/usr.bin/diff/Makefile @@ -1,9 +1,11 @@ - +# $Id$ PROG= diff SRCS= diff.c analyze.c io.c context.c ed.c normal.c ifdef.c util.c dir.c \ version.c getopt.c getopt1.c side.c cmpbuf.c CFLAGS+=-DHAVE_CONFIG_H +SUBDIR+= doc + DPADD+= ${LIBGNUREGEX} LDADD+= -lgnuregex diff --git a/gnu/usr.bin/diff/doc/Makefile b/gnu/usr.bin/diff/doc/Makefile new file mode 100644 index 0000000..033d464 --- /dev/null +++ b/gnu/usr.bin/diff/doc/Makefile @@ -0,0 +1,7 @@ +# $Id$ + +INFO = diff + +.PATH: ${.CURDIR}/.. + +.include <bsd.info.mk> |