diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-08-23 16:49:06 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-08-23 16:49:06 +0000 |
| commit | 8d26610d5fbb07cc7a3509714816ae68db492fcf (patch) | |
| tree | 1758eb9b284dde1b30ec9647387b98353059ab24 | |
| parent | b2420a13ab264414b15abeed3d4c7af5ab93e21f (diff) | |
Notes
| -rw-r--r-- | share/mk/bsd.lib.mk | 4 | ||||
| -rw-r--r-- | share/mk/bsd.prog.mk | 4 | ||||
| -rw-r--r-- | share/mk/bsd.sgml.mk | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index d5146b90db92..a3c74e355e17 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -1,5 +1,5 @@ # from: @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91 -# $Id: bsd.lib.mk,v 1.38 1996/08/03 06:43:05 jkh Exp $ +# $Id: bsd.lib.mk,v 1.39 1996/08/11 12:24:44 peter Exp $ # .if exists(${.CURDIR}/../Makefile.inc) @@ -121,7 +121,7 @@ _LIBS+=lib${LIB}_pic.a PICFLAG=-fpic .endif -all: ${_LIBS} all-man _SUBDIR # llib-l${LIB}.ln +all: depend ${_LIBS} all-man _SUBDIR # llib-l${LIB}.ln OBJS+= ${SRCS:N*.h:R:S/$/.o/g} diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index c0233a241b07..0bba36b480bf 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -1,5 +1,5 @@ # from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 -# $Id: bsd.prog.mk,v 1.34 1996/06/24 04:24:13 jkh Exp $ +# $Id: bsd.prog.mk,v 1.35 1996/06/29 03:12:49 phk Exp $ .if exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" @@ -135,7 +135,7 @@ MAN1= ${PROG}.1 # here (or does maninstall always work when nothing is made?), .MAIN: all -all: ${PROG} all-man _SUBDIR +all: depend ${PROG} all-man _SUBDIR .if !target(clean) clean: _SUBDIR diff --git a/share/mk/bsd.sgml.mk b/share/mk/bsd.sgml.mk index e8e845d2fd00..aabfbad06802 100644 --- a/share/mk/bsd.sgml.mk +++ b/share/mk/bsd.sgml.mk @@ -1,7 +1,7 @@ # bsd.sgml.mk - 8 Sep 1995 John Fieber # This file is in the public domain. # -# $Id: bsd.sgml.mk,v 1.5 1996/05/27 23:12:15 wosch Exp $ +# $Id: bsd.sgml.mk,v 1.6 1996/06/24 04:24:14 jkh Exp $ # # The include file <bsd.sgml.mk> handles installing sgml documents. # <bsd.prog.mk> includes the file named "../Makefile.inc" if it exists, @@ -68,7 +68,7 @@ LPR?= lpr DOCS= ${FORMATS:S/^/${DOC}./g} .MAIN: all -all: ${DOCS} +all: depend ${DOCS} # If FORMATS is empty, do nothing .if empty(FORMATS) |
