Makefile 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. SHELL := /bin/bash
  2. default: html
  3. LFS_EN = /home/xry111/svn-repos/LFS-BOOK
  4. MLANG=zh_CN
  5. ALL_XML_FILES = $(shell find $(LFS_EN) -type f -name '*.xml')
  6. EXCLUDE_FILES = $(LFS_EN)/chapter01/livecd.xml \
  7. $(LFS_EN)/chapter04/creatingtoolsdir.xml \
  8. $(LFS_EN)/chapter04/aboutlfs.xml \
  9. $(LFS_EN)/chapter08/adjusting.xml
  10. XML_FILES = $(filter-out $(EXCLUDE_FILES), $(ALL_XML_FILES))
  11. PO_FILES = $(patsubst $(LFS_EN)/%.xml, $(MLANG)/%.po, $(XML_FILES))
  12. $(MLANG)/chapter01/changelog.po: $(LFS_EN)/chapter01/changelog.xml changelogtranslator.py templatetranslator.py
  13. mkdir -pv "$(@D)"
  14. po4a-updatepo -f docbook -m $< -p $@
  15. ./changelogtranslator.py $(MLANG)
  16. $(MLANG)/%.po: $(LFS_EN)/%.xml
  17. mkdir -pv "$(@D)"
  18. po4a-updatepo -f docbook -m $< -p $@
  19. touch $@
  20. MXML_FILES = $(patsubst $(LFS_EN)/%.xml, %.xml, $(XML_FILES))
  21. BOOK_FILES = $(patsubst $(LFS_EN)/%, %, $(shell find $(LFS_EN) -type f -not -path "$(LFS_EN)/.svn/*" -not -path "$(LFS_EN)/render/*"))
  22. KEEP_FILES = $(filter-out $(MXML_FILES), KEEP_FILES)
  23. MBOOK_FILES = $(patsubst %, $(MLANG)/book/%, $(BOOK_FILES))
  24. .PHONY: html booksrc nochunks pdf pofiles
  25. pofiles: $(PO_FILES)
  26. html: booksrc
  27. rm -rf $(MLANG)/book/render # without this tidy may be stupidly slow
  28. make -C $(MLANG)/book REV=$(REV) BASEDIR=render
  29. nochunks: booksrc
  30. rm -rf $(MLANG)/book/nochunks
  31. make -C $(MLANG)/book REV=$(REV) BASEDIR=nochunks nochunks
  32. pdf: booksrc
  33. rm -rf $(MLANG)/book/pdf
  34. pushd $(MLANG)/book; sh ../fetch_fonts.sh; popd
  35. make -C $(MLANG)/book REV=$(REV) BASEDIR=pdf pdf
  36. booksrc: $(MBOOK_FILES) $(PATCHES) $(MLANG)/book/general.ent.orig
  37. [ ! -e $(MLANG)/fix.sh ] || (pushd $(MLANG)/book; sh ../fix.sh; popd)
  38. $(MLANG)/book/%.xml: $(LFS_EN)/%.xml $(MLANG)/%.po
  39. mkdir -pv "$(@D)"
  40. po4a-translate -f docbook -m $< -p $(filter-out $<, $^) -l $@
  41. [ -e $@ ] || cp -v $< $@
  42. $(MLANG)/book/%: $(LFS_EN)/%
  43. mkdir -pv "$(@D)"
  44. cp -v $< $@
  45. $(MLANG)/book/general.ent.orig: $(LFS_EN)/general.ent
  46. mkdir -pv "$(@D)"
  47. cp -v $< $@