mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +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 $< $@
|
|
|
|
|