1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/build/pymake/tests/native-simple.mk Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +ifndef TOUCH 1.5 +TOUCH = touch 1.6 +endif 1.7 + 1.8 +all: testfile {testfile2} (testfile3) 1.9 + test -f testfile 1.10 + test -f {testfile2} 1.11 + test -f "(testfile3)" 1.12 + @echo TEST-PASS 1.13 + 1.14 +testfile {testfile2} (testfile3): 1.15 + $(TOUCH) "$@"