Makefile 95 B

12345678910
  1. .PHONY: all check test ptest clean
  2. all :
  3. check : test
  4. ptest : test
  5. test :
  6. ./test.sh
  7. clean: