Makefile 227 B

1234567891011121314151617181920212223
  1. animals.ps: animals.dot
  2. neato -Tps $< -Gstart=100 -o $@
  3. animals.dot: animals.py
  4. ./py2dot -l $< -o $@
  5. animals.py: ../animals.txt
  6. ../perfect_hash.py $< >$@
  7. clean:
  8. rm animals.py animals.dot animals.ps
  9. test:
  10. true