Makefile 303 B

123456789
  1. all:
  2. jade -i html -t sgml -V nochunks -d /usr/share/sgml/docbook/utils-0.6.9/docbook-utils.dsl\#html pisg-doc.sgml | w3m -dump -T text/html > pisg-tmp.txt
  3. cat pisg-tmp.txt | ./modifytxt.pl > pisg-doc.txt
  4. docbook2html pisg-doc.sgml -o html
  5. clean:
  6. rm -rf html
  7. rm -f pisg-doc.txt
  8. rm -f pisg-tmp.txt