diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-08-29 02:11:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-08-29 02:11:15 +0000 |
commit | 83882dd779eca2b86fd37fb41782646feafb849a (patch) | |
tree | 63f750f5132c702ff1c16b923dd3a7640011f138 /gnu | |
parent | 2fe4cb81cd333ddaa850adfc1b0c0cff8c471ebc (diff) |
Slightly better fix to generate rcsfile.5
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/rcs/Makefile.bsd-wrapper | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/usr.bin/rcs/Makefile.bsd-wrapper b/gnu/usr.bin/rcs/Makefile.bsd-wrapper index 39fc31f845f..823c263a87e 100644 --- a/gnu/usr.bin/rcs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/rcs/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.2 1996/08/15 11:36:33 millert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.3 1996/08/29 02:11:14 millert Exp $ MAN= man/ci.1 man/co.1 man/ident.1 man/merge.1 man/rcs.1 man/rcsclean.1 \ man/rcsdiff.1 man/rcsfile.5 man/rcsfreeze.1 man/rcsintro.1 \ @@ -6,7 +6,7 @@ MAN= man/ci.1 man/co.1 man/ident.1 man/merge.1 man/rcs.1 man/rcsclean.1 \ GNUCFLAGS= CFLAGS="${CFLAGS}" CLEANFILES= man/rcsfile.5 src/conf.h -all: config.status +all: config.status rcsfile.5 ${MAKE} ${GNUCFLAGS} LDFLAGS=${LDSTATIC} .FORCE: .IGNORE @@ -17,7 +17,9 @@ config: .FORCE config.status: sh ${.CURDIR}/configure --with-diffutils --prefix=/usr - pic -n ${.CURDIR}/man/rcsfile.5in > man/rcsfile.5 + +rcsfile.5: + (cd man ; ${MAKE} ${GNUCFLAGS} rcsfile.5) install: maninstall ${MAKE} ${GNUCFLAGS} prefix=${DESTDIR}/usr \ |