xref: /freebsd-13-stable/contrib/bmake/unit-tests/depsrc-phony.mk (revision 956e45f6fb3e18b8e89b1341708db60c30bb9f27)
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