Makefile 336 B

123456789101112131415
  1. all: pisg-doc.txt html/index.html
  2. pisg-doc.txt: pisg-doc.xml
  3. docbook2txt pisg-doc.xml
  4. mv pisg-doc.txt pisg-tmp.txt
  5. cat pisg-tmp.txt | ./modifytxt.pl > pisg-doc.txt
  6. rm -f pisg-tmp.txt
  7. html/index.html: pisg-doc.xml
  8. -rm -f html/*
  9. docbook2html pisg-doc.xml -V "%use-id-as-filename%" -o html
  10. clean:
  11. rm -rf html
  12. rm -f pisg-doc.txt