mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-10 02:18:57 +00:00
13 lines
213 B
Makefile
13 lines
213 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) "$@"
|