Makefile 90 B

123456789
  1. TEST := test.py
  2. test:
  3. @pyrg $(TEST)
  4. clean:
  5. rm `find -name \*.pyc`
  6. .PHONY: test clean