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