Makefile 307 B

1234567891011121314
  1. all: autopkgtest.html autopkgtest.txt.gz
  2. autopkgtest.html: autopkgtest.md.expanded
  3. markdown $< > $@
  4. autopkgtest.txt.gz: autopkgtest.md.expanded
  5. gzip -ncf9 $< > $@
  6. autopkgtest.md.expanded: autopkgtest.md version.txt
  7. cat $^ > $@
  8. clean:
  9. rm -f autopkgtest.html autopkgtest.txt.gz $(wildcard *.expanded)