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