mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +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
|