1 1.3 rillig # $NetBSD: depsrc-recursive.mk,v 1.3 2020/09/05 15:57:12 rillig Exp $ 2 1.1 rillig # 3 1.3 rillig # Tests for the special source .RECURSIVE in dependency declarations, 4 1.3 rillig # which executes the commands of the target even if the -n or -t command 5 1.3 rillig # line options are given. 6 1.1 rillig 7 1.3 rillig .MAKEFLAGS: -n 8 1.1 rillig 9 1.3 rillig all: this-is-made 10 1.3 rillig all: this-is-not-made 11 1.3 rillig 12 1.3 rillig this-is-made: .RECURSIVE 13 1.3 rillig @echo ${.TARGET} is made. 14 1.3 rillig 15 1.3 rillig this-is-not-made: 16 1.3 rillig @echo ${.TARGET} is just echoed. 17