gecko/build/pymake/tests/native-simple.mk
Siddharth Agarwal 2ba368816d Bug 780612 - Add a list of characters which probably indicate shell scripts but native commands won't reject. r=khuey
--HG--
extra : rebase_source : 38ffd729c2972e142673fbca50584c241b4eade0
2012-08-08 00:49:02 +05:30

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) "$@"