mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 21:03:08 +09:00
12 lines
201 B
Makefile
12 lines
201 B
Makefile
ifndef TOUCH
|
|
TOUCH = touch
|
|
endif
|
|
|
|
all: testfile {testfile2} (testfile3)
|
|
test -f testfile
|
|
test -f {testfile2}
|
|
test -f "(testfile3)"
|
|
@echo TEST-PASS
|
|
|
|
testfile {testfile2} (testfile3):
|
|
$(TOUCH) "$@"
|