Only include dependency on include-dirs if the include directory doesn't
exist.
This commit is contained in:
parent
ba4b09844f
commit
95be56d2e1
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile.arm,v 1.1 2001/06/11 17:44:38 matt Exp $
|
# $NetBSD: Makefile.arm,v 1.2 2001/06/11 17:50:34 matt Exp $
|
||||||
|
|
||||||
# Makefile for NetBSD
|
# Makefile for NetBSD
|
||||||
#
|
#
|
||||||
|
@ -187,6 +187,7 @@ depend: .depend
|
||||||
|
|
||||||
dependall: depend all
|
dependall: depend all
|
||||||
|
|
||||||
|
.if !exists(include)
|
||||||
${OBJS} assym.h .depend: include-dir
|
${OBJS} assym.h .depend: include-dir
|
||||||
include-dir:
|
include-dir:
|
||||||
@rm -rf include
|
@rm -rf include
|
||||||
|
@ -198,6 +199,7 @@ include-dir:
|
||||||
@ln -s $S/arch/${TARGET_MACHINE}/include include/arm/${TARGET_MACHINE}
|
@ln -s $S/arch/${TARGET_MACHINE}/include include/arm/${TARGET_MACHINE}
|
||||||
@ln -s $S/arch/arm/include include/machine
|
@ln -s $S/arch/arm/include include/machine
|
||||||
.endif
|
.endif
|
||||||
|
.endif
|
||||||
|
|
||||||
# depend on root or device configuration
|
# depend on root or device configuration
|
||||||
autoconf.o conf.o: Makefile
|
autoconf.o conf.o: Makefile
|
||||||
|
|
Loading…
Reference in New Issue