diff options
author | bde <bde@FreeBSD.org> | 1994-08-25 08:36:26 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1994-08-25 08:36:26 +0000 |
commit | a9f5e2f0f41443c27cffae101f89a667ecfc548a (patch) | |
tree | 511fe73f4b2ae26c23fc72840468d41fca0fb9ed /gnu/usr.bin/man | |
parent | 19f2ca4ce693929a7f342287d0a5b24b2c4d09b0 (diff) | |
download | FreeBSD-src-a9f5e2f0f41443c27cffae101f89a667ecfc548a.zip FreeBSD-src-a9f5e2f0f41443c27cffae101f89a667ecfc548a.tar.gz |
Fixed Makefile for make depend some more. The .depend target was not
being created and config.h depended on Makefile.inc being in the wrong
directory so real dependencies were not being checked. The "depend"
target was not created either so "make depend" always found work to do.
Diffstat (limited to 'gnu/usr.bin/man')
-rw-r--r-- | gnu/usr.bin/man/lib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/man/lib/Makefile b/gnu/usr.bin/man/lib/Makefile index 7134c86..cb5fd63 100644 --- a/gnu/usr.bin/man/lib/Makefile +++ b/gnu/usr.bin/man/lib/Makefile @@ -10,14 +10,14 @@ NOPROFILE= YES CFLAGS+= -I${.CURDIR} -DSTDC_HEADERS -DPOSIX -DHAS_TROFF -DDO_COMPRESS -DALT_SYSTEMS CLEANFILES+= ${CONFH} -SRCS = util.c gripes.c +SRCS = util.c gripes.c ${CONFH} -libman.a:: ${CONFH} +libman.a:: ${CONFH} install: @echo -n -depend ${CONFH}: ${.CURDIR}/config.h_dist ../Makefile.inc +${CONFH}: ${.CURDIR}/config.h_dist ${.CURDIR}/../Makefile.inc sed -e 's,%apropos%,${apropos},' -e 's,%whatis%,${whatis},' \ -e 's,%pager%,${pager},' -e 's,%troff%,${troff},' \ -e 's,%nroff%,${nroff},' -e 's,%tbl%,${tbl},' \ |