Mypal/build/pymake/tests/vpath-directive-dynamic.mk
2019-03-11 13:26:37 +03:00

13 lines
144 B
Makefile

$(shell \
mkdir subd1; \
touch subd1/test.in; \
)
VVAR = %.in subd1
vpath $(VVAR)
all: test.in
test "$<" = "subd1/test.in"
@echo TEST-PASS