Remove the .if !target(dependall) so that 'make dependall' works (again)
for the kernel.
This commit is contained in:
parent
ea669558c6
commit
438ae29810
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.kern.inc,v 1.43 2003/11/11 21:26:53 enami Exp $
|
||||
# $NetBSD: Makefile.kern.inc,v 1.44 2003/11/14 08:33:36 dsl Exp $
|
||||
#
|
||||
# This file contains common `MI' targets and definitions and it is included
|
||||
# at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
|
||||
|
@ -257,6 +257,7 @@ __CLEANDEPEND: .USE
|
|||
cleandir distclean: __CLEANKERNEL __CLEANDEPEND
|
||||
clean: __CLEANKERNEL
|
||||
depend: .depend
|
||||
dependall: depend all
|
||||
|
||||
.if !target(.depend)
|
||||
SRCS?= ${MD_SFILES} ${MD_CFILES} ${MI_CFILES} ${CFILES} ${SFILES}
|
||||
|
@ -273,10 +274,6 @@ MKDEP_CFLAGS?= ${CFLAGS}
|
|||
@rm -f assym.dep
|
||||
.endif
|
||||
|
||||
.if !target(dependall)
|
||||
dependall: depend all
|
||||
.endif
|
||||
|
||||
.if !target(lint)
|
||||
ALLSFILES?= ${MD_SFILES} ${SFILES}
|
||||
LINTSTUBS?= ${ALLSFILES:T:R:C/^.*$/LintStub_&.c/g}
|
||||
|
|
Loading…
Reference in New Issue