1 1.3 rillig # $NetBSD: depsrc-make.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 .MAKE in dependency declarations, which 4 1.3 rillig # executes the commands of the target even if the -n or -t command line 5 1.3 rillig # 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: .MAKE 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