1# $NetBSD: dir-expand-path.mk,v 1.1 2020/08/22 21:55:54 rillig Exp $
2#
3# Tests for filename expansion in the search path.
4
5_!=	rm -rf dir-expand-path.dir.*
6_!=	mkdir dir-expand-path.dir.1
7_!=	mkdir dir-expand-path.dir.2
8_!=	touch dir-expand-path.dir.1/file1.src
9_!=	touch dir-expand-path.dir.1/file2.src
10_!=	touch dir-expand-path.dir.2/file3.src
11
12.PATH: dir-expand-path.dir.1
13.PATH: dir-expand-path.dir.2
14
15all: *.src
16	@printf '%s\n' ${.ALLSRC:O}
17
18.END:
19	@rm -rf dir-expand-path.dir.*
20