1 1.3 rillig # $NetBSD: deptgt-default.mk,v 1.3 2021/12/01 23:56:29 rillig Exp $ 2 1.1 rillig # 3 1.3 rillig # Tests for the special target .DEFAULT in dependency declarations, which 4 1.3 rillig # attaches its associated commands to all targets that don't specify any way 5 1.3 rillig # to create them. 6 1.1 rillig 7 1.3 rillig all: test-default not-a-target 8 1.3 rillig 9 1.3 rillig test-default: .PHONY 10 1.3 rillig 11 1.3 rillig has-commands: .PHONY 12 1.3 rillig @echo 'Making ${.TARGET} from ${.IMPSRC}.' 13 1.3 rillig 14 1.3 rillig .DEFAULT: dependency-is-ignored 15 1.3 rillig @echo "Default command is making '${.TARGET}' from '${.IMPSRC}'." 16 1.1 rillig 17 1.1 rillig all: 18