Makefile 134 B

1234567891011
  1. TXT=$(shell ls *.txt)
  2. ALL: index.html
  3. index.html: $(TXT)
  4. rst2html.py index.txt index.html
  5. clean:
  6. rm -f index.html
  7. .PHONY: clean