native-simple.mk 213 B

12345678910111213
  1. ifndef TOUCH
  2. TOUCH = touch
  3. endif
  4. all: testfile {testfile2} (testfile3)
  5. test -f testfile
  6. test -f {testfile2}
  7. test -f "(testfile3)"
  8. @echo TEST-PASS
  9. testfile {testfile2} (testfile3):
  10. $(TOUCH) "$@"