xref: /freebsd/contrib/bmake/unit-tests/deptgt-path-suffix.mk (revision a8c56be47166295d37600ff81fc1857db87b3a9b)
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