xref: /netbsd-src/usr.bin/make/unit-tests/depsrc-phony.mk (revision b5c47949a45ac972130c38cf13dfd8afb1f09285)
1# $NetBSD: depsrc-phony.mk,v 1.3 2020/09/05 15:57:12 rillig Exp $
2#
3# Tests for the special source .PHONY in dependency declarations,
4# which executes the commands for the target even if a file of the same
5# name exists and would be considered up to date.
6
7# Without the .PHONY, this target would be "up to date".
8${MAKEFILE}: .PHONY
9	: ${.TARGET:T} is made.
10