Makefile 451B

123456789101112131415161718192021
  1. # Makefile for testing
  2. TESTS = git svn crlf strange
  3. .PHONY: dogfood test $(TESTS)
  4. dogfood:
  5. git diff | src/cdiff.py
  6. git diff | src/cdiff.py -s
  7. test: $(TESTS)
  8. $(TESTS):
  9. src/cdiff.py tests/$@.diff
  10. src/cdiff.py tests/$@.diff -s
  11. src/cdiff.py tests/$@.diff | diff -u tests/$@.diff -
  12. python3 src/cdiff.py tests/$@.diff
  13. python3 src/cdiff.py tests/$@.diff -s
  14. python3 src/cdiff.py tests/$@.diff | diff -u tests/$@.diff -
  15. # vim:set noet ts=8 sw=8: