tenfourfox/build/pymake/tests/vpath-directive-dynamic.mk

13 lines
144 B
Makefile
Raw Normal View History

2017-04-19 07:56:45 +00:00
$(shell \
mkdir subd1; \
touch subd1/test.in; \
)
VVAR = %.in subd1
vpath $(VVAR)
all: test.in
test "$<" = "subd1/test.in"
@echo TEST-PASS