mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
12 lines
144 B
Makefile
12 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
|