mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
13 lines
144 B
Makefile
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
|