Makefile 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 = # empty for now
  7. XML_FILES = $(filter-out $(EXCLUDE_FILES), $(ALL_XML_FILES))
  8. PO_FILES = $(patsubst $(LFS_EN)/%.xml, $(MLANG)/%.po, $(XML_FILES))
  9. PO4A_FLAGS = -f docbook --porefs none
  10. $(MLANG)/chapter01/changelog.po: $(LFS_EN)/chapter01/changelog.xml changelogtranslator.py templatetranslator.py
  11. mkdir -pv "$(@D)"
  12. po4a-updatepo $(PO4A_FLAGS) -m $< -p $@
  13. ./changelogtranslator.py $(MLANG)
  14. $(MLANG)/%.po: $(LFS_EN)/%.xml
  15. mkdir -pv "$(@D)"
  16. po4a-updatepo $(PO4A_FLAGS) -m $< -p $@
  17. touch $@
  18. MXML_FILES = $(patsubst $(LFS_EN)/%.xml, %.xml, $(XML_FILES))
  19. BOOK_FILES = $(patsubst $(LFS_EN)/%, %, $(shell find $(LFS_EN) -type f -not -path "$(LFS_EN)/.svn/*" -not -path "$(LFS_EN)/render/*"))
  20. KEEP_FILES = $(filter-out $(MXML_FILES), KEEP_FILES)
  21. MBOOK_FILES = $(patsubst %, $(MLANG)/book/%, $(BOOK_FILES))
  22. .PHONY: html booksrc nochunks pdf pofiles
  23. pofiles: $(PO_FILES)
  24. html: booksrc
  25. rm -rf $(MLANG)/book/render # without this tidy may be stupidly slow
  26. make -C $(MLANG)/book REV=$(REV) BASEDIR=render
  27. nochunks: booksrc
  28. rm -rf $(MLANG)/book/nochunks
  29. make -C $(MLANG)/book REV=$(REV) BASEDIR=nochunks nochunks
  30. pdf: booksrc
  31. rm -rf $(MLANG)/book/pdf
  32. pushd $(MLANG)/book; sh ../fetch_fonts.sh; popd
  33. make -C $(MLANG)/book REV=$(REV) BASEDIR=pdf pdf
  34. ORIG_FILES = $(MLANG)/book/general.ent.orig \
  35. $(MLANG)/book/Makefile.orig
  36. booksrc: $(MBOOK_FILES) $(PATCHES) $(ORIG_FILES)
  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 $< $@
  48. $(MLANG)/book/Makefile.orig: $(LFS_EN)/Makefile
  49. mkdir -pv "$(@D)"
  50. cp -v $< $@