xref: /freebsd/contrib/bmake/unit-tests/deptgt-path-suffix.mk (revision 9978553d0199e7ec0bdd1c44fc7f6c7b0c11e43b)
1# $NetBSD: deptgt-path-suffix.mk,v 1.4 2025/06/28 22:39:28 rillig Exp $
2#
3# Tests for the special target .PATH.suffix in dependency declarations.
4
5# TODO: Implementation
6
7# expect+1: Suffix ".c" not defined (yet)
8.PATH.c: ..
9
10.SUFFIXES: .c
11
12# Now the suffix is defined, and the path is recorded.
13.PATH.c: ..
14
15all:
16	@:;
17