Makefile 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. #BASEDIR = ~/lfs-book
  2. #SYSDDIR = ~/lfs-systemd
  3. #DUMPDIR = ~/lfs-commands
  4. RENDERTMP = $(HOME)/tmp
  5. CHUNK_QUIET = 1
  6. ROOT_ID =
  7. SHELL = /bin/bash
  8. ifdef V
  9. Q =
  10. else
  11. Q = @
  12. endif
  13. ifndef REV
  14. REV = sysv
  15. endif
  16. ifneq ($(REV), sysv)
  17. ifneq ($(REV), systemd)
  18. $(error REV must be 'sysv' (default) or 'systemd'.)
  19. endif
  20. endif
  21. ifeq ($(REV), sysv)
  22. BASEDIR ?= ~/lfs-book
  23. PDF_OUTPUT ?= LFS-BOOK.pdf
  24. NOCHUNKS_OUTPUT ?= LFS-BOOK.html
  25. DUMPDIR ?= ~/lfs-commands
  26. else
  27. BASEDIR ?= ~/lfs-systemd
  28. PDF_OUTPUT ?= LFS-SYSD-BOOK.pdf
  29. NOCHUNKS_OUTPUT ?= LFS-SYSD-BOOK.html
  30. DUMPDIR ?= ~/lfs-sysd-commands
  31. endif
  32. book: validate profile-html
  33. @echo "Generating chunked XHTML files at $(BASEDIR)/ ..."
  34. $(Q)xsltproc --nonet \
  35. --stringparam chunk.quietly $(CHUNK_QUIET) \
  36. --stringparam rootid "$(ROOT_ID)" \
  37. --stringparam base.dir $(BASEDIR)/ \
  38. --stringparam l10n.gentext.default.language "zh_cn" \
  39. stylesheets/lfs-chunked.xsl \
  40. $(RENDERTMP)/lfs-html.xml
  41. @echo "Copying CSS code and images..."
  42. $(Q)mkdir -p $(BASEDIR)/stylesheets
  43. $(Q)cp stylesheets/lfs-xsl/*.css $(BASEDIR)/stylesheets
  44. $(Q)pushd $(BASEDIR)/ > /dev/null; \
  45. sed -i -e "s@../stylesheets@stylesheets@g" *.html; \
  46. popd > /dev/null
  47. $(Q)mkdir -p $(BASEDIR)/images
  48. $(Q)cp images/*.png $(BASEDIR)/images
  49. @echo "Running Tidy and obfuscate.sh..."
  50. $(Q)for filename in `find $(BASEDIR) -name "*.html"`; do \
  51. tidy -config tidy.conf $$filename; \
  52. true; \
  53. /bin/bash obfuscate.sh $$filename; \
  54. sed -e "s@text/html@application/xhtml+xml@g" \
  55. -i $$filename; \
  56. done;
  57. $(Q)$(MAKE) --no-print-directory wget-list md5sums
  58. pdf: validate
  59. @echo "Generating profiled XML for PDF..."
  60. $(Q)xsltproc --nonet \
  61. --stringparam profile.condition pdf \
  62. --output $(RENDERTMP)/lfs-pdf.xml \
  63. stylesheets/lfs-xsl/profile.xsl \
  64. $(RENDERTMP)/lfs-full.xml
  65. @echo "Generating FO file..."
  66. $(Q)xsltproc --nonet \
  67. --stringparam l10n.gentext.default.language "zh_cn" \
  68. --stringparam rootid "$(ROOT_ID)" \
  69. --output $(RENDERTMP)/lfs-pdf.fo \
  70. stylesheets/lfs-pdf.xsl \
  71. $(RENDERTMP)/lfs-pdf.xml
  72. $(Q)sed -i -e 's/span="inherit"/span="all"/' $(RENDERTMP)/lfs-pdf.fo
  73. $(Q)bash pdf-fixups.sh $(RENDERTMP)/lfs-pdf.fo
  74. @echo "Fetch fonts from the server if necessary..."
  75. $(Q)make -C fonts
  76. @echo "Copying fonts to temporary directory..."
  77. $(Q)mkdir -p $(RENDERTMP)/fonts
  78. $(Q)cp fonts/* $(RENDERTMP)/fonts
  79. @echo "Generating PDF file..."
  80. $(Q)mkdir -p $(RENDERTMP)/images
  81. $(Q)cp images/*.png $(RENDERTMP)/images
  82. $(Q)mkdir -p $(BASEDIR)
  83. $(Q)fop -q $(RENDERTMP)/lfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT) -c fopconfig.xml 2>fop.log
  84. @echo "$(BASEDIR)/$(PDF_OUTPUT) created"
  85. @echo "fop.log created"
  86. nochunks: validate profile-html
  87. @echo "Generating non chunked XHTML file..."
  88. $(Q)xsltproc --nonet \
  89. --stringparam l10n.gentext.default.language "zh_cn" \
  90. --stringparam rootid "$(ROOT_ID)" \
  91. --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
  92. stylesheets/lfs-nochunks.xsl \
  93. $(RENDERTMP)/lfs-html2.xml
  94. @echo "Running Tidy..."
  95. $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
  96. @echo "Running obfuscate.sh..."
  97. $(Q)bash obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  98. $(Q)sed -i -e "s@text/html@application/xhtml+xml@g" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  99. $(Q)sed -i -e "s@../wget-list@wget-list@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  100. $(Q)sed -i -e "s@../md5sums@md5sums@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  101. # $(Q)sed -i -e "s@\xa9@\©@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  102. @echo "Output at $(BASEDIR)/$(NOCHUNKS_OUTPUT)"
  103. tmpdir:
  104. @echo "Creating and cleaning $(RENDERTMP)"
  105. $(Q)mkdir -p $(RENDERTMP)
  106. $(Q)rm -f $(RENDERTMP)/lfs*.xml
  107. $(Q)rm -f $(RENDERTMP)/*wget*
  108. $(Q)rm -f $(RENDERTMP)/*md5sum*
  109. $(Q)rm -f $(RENDERTMP)/*pdf.fo
  110. packages-cn.ent: packages.ent translate-packages-ent.sh
  111. ./translate-packages-ent.sh packages.ent packages-cn.ent
  112. validate: tmpdir packages-cn.ent
  113. @echo "Processing bootscripts..."
  114. $(Q)bash process-scripts.sh
  115. @echo "Adjusting for revision $(REV)..."
  116. $(Q)xsltproc --nonet \
  117. --xinclude \
  118. --output $(RENDERTMP)/lfs-html2.xml \
  119. --stringparam profile.revision $(REV) \
  120. stylesheets/lfs-xsl/profile.xsl \
  121. index.xml
  122. @echo "Validating the book..."
  123. $(Q)xmllint --nonet \
  124. --noent \
  125. --postvalid \
  126. -o $(RENDERTMP)/lfs-full.xml \
  127. $(RENDERTMP)/lfs-html2.xml
  128. $(Q)rm -f appendices/*.script
  129. $(Q)./aux-file-data.sh $(RENDERTMP)/lfs-full.xml
  130. @echo "Validation complete."
  131. profile-html:
  132. @echo "Generating profiled XML for XHTML..."
  133. $(Q)xsltproc --nonet \
  134. --stringparam profile.condition html \
  135. --output $(RENDERTMP)/lfs-html.xml \
  136. stylesheets/lfs-xsl/profile.xsl \
  137. $(RENDERTMP)/lfs-full.xml
  138. wget-list: $(BASEDIR)/wget-list
  139. $(BASEDIR)/wget-list: stylesheets/wget-list.xsl chapter03/chapter03.xml \
  140. packages.ent patches.ent
  141. @echo "Generating consolidated wget list at $(BASEDIR)/wget-list ..."
  142. $(Q)mkdir -p $(BASEDIR)
  143. # $(Q)xsltproc --nonet --xinclude \
  144. # --stringparam profile.revision $(REV) \
  145. # --output $(RENDERTMP)/sysd-wget.xml \
  146. # stylesheets/lfs-xsl/profile.xsl \
  147. # chapter03/chapter03.xml
  148. $(Q)xsltproc --xinclude --nonet \
  149. --output $(BASEDIR)/wget-list \
  150. stylesheets/wget-list.xsl \
  151. chapter03/chapter03.xml
  152. md5sums: $(BASEDIR)/md5sums
  153. $(BASEDIR)/md5sums: stylesheets/wget-list.xsl chapter03/chapter03.xml \
  154. packages.ent patches.ent
  155. @echo "Generating consolidated md5sum file at $(BASEDIR)/md5sums ..."
  156. $(Q)mkdir -p $(BASEDIR)
  157. $(Q)xsltproc --nonet --xinclude \
  158. --stringparam profile.revision $(REV) \
  159. --output $(RENDERTMP)/sysv-md5sum.xml \
  160. stylesheets/lfs-xsl/profile.xsl \
  161. chapter03/chapter03.xml
  162. $(Q)xsltproc --xinclude --nonet \
  163. --output $(BASEDIR)/md5sums \
  164. stylesheets/md5sum.xsl \
  165. $(RENDERTMP)/sysv-md5sum.xml
  166. $(Q)sed -i -e \
  167. "s/BOOTSCRIPTS-MD5SUM/$(shell md5sum lfs-bootscripts*.tar.bz2 | cut -d' ' -f1)/" \
  168. $(BASEDIR)/md5sums
  169. #dump-commands: validate
  170. # @echo "Dumping book commands..."
  171. # $(Q)xsltproc --nonet \
  172. # --output $(RENDERTMP)/lfs-html.xml \
  173. # --stringparam profile.revision $(REV) \
  174. # stylesheets/lfs-xsl/profile.xsl \
  175. # $(RENDERTMP)/lfs-full.xml
  176. # $(Q)rm -rf $(DUMPDIR)
  177. # $(Q)xsltproc --output $(DUMPDIR)/ \
  178. # stylesheets/dump-commands.xsl \
  179. # $(RENDERTMP)/lfs-html.xml
  180. # @echo "Dumping book commands complete in $(DUMPDIR)"
  181. all: book nochunks pdf # dump-commands
  182. .PHONY : all book dump-commands nochunks pdf profile-html tmpdir validate md5sums wget-list