mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
c8966962fa
--HG-- extra : rebase_source : 38ffd729c2972e142673fbca50584c241b4eade0
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) "$@"
|