xref: /freebsd/contrib/bmake/unit-tests/deptgt-path-suffix.mk (revision 59c8e88e72633afbc47a4ace0d2170d00d51f7dc)
1# $NetBSD: deptgt-path-suffix.mk,v 1.3 2021/12/13 23:38:54 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