mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
12 lines
106 B
Makefile
12 lines
106 B
Makefile
|
|
$(shell \
|
||
|
|
mkdir foo; \
|
||
|
|
touch test.in \
|
||
|
|
)
|
||
|
|
|
||
|
|
all: foo/test.out
|
||
|
|
@echo TEST-PASS
|
||
|
|
|
||
|
|
foo/%.out: %.in
|
||
|
|
cp $< $@
|
||
|
|
|
||
|
|
|