Makefile 366 B

123456789101112131415161718
  1. all: debconf_specification.txt.gz debconf_specification.html
  2. %.html: %.xml html.dsl
  3. openjade -V nochunks -t sgml -d html.dsl \
  4. /usr/share/xml/declaration/xml.dcl $< > $@
  5. -tidy -q -i -m -f /dev/null $@
  6. %.txt: %.html
  7. links -dump $< | perl -pe 's/[\r\0]//g' > $@
  8. %.txt.gz: %.txt
  9. gzip -ncf9 $< > $@
  10. clean:
  11. rm -f *.css *.html *.txt *.txt.gz
  12. .DELETE_ON_ERROR: