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