Makefile 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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-html2.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 "Generating PDF file..."
  75. $(Q)mkdir -p $(BASEDIR)
  76. @echo "Copying images to destination..."
  77. $(Q)mkdir -p $(BASEDIR)/images
  78. $(Q)cp images/*.png $(BASEDIR)/images
  79. $(Q)fop -q $(RENDERTMP)/lfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT) 2>fop.log
  80. @echo "$(BASEDIR)/$(PDF_OUTPUT) created"
  81. @echo "fop.log created"
  82. nochunks: validate profile-html
  83. @echo "Generating non chunked XHTML file..."
  84. $(Q)xsltproc --nonet \
  85. --stringparam l10n.gentext.default.language "zh_cn" \
  86. --stringparam rootid "$(ROOT_ID)" \
  87. --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
  88. stylesheets/lfs-nochunks.xsl \
  89. $(RENDERTMP)/lfs-html2.xml
  90. @echo "Running Tidy..."
  91. $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
  92. @echo "Running obfuscate.sh..."
  93. $(Q)bash obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  94. $(Q)sed -i -e "s@text/html@application/xhtml+xml@g" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  95. $(Q)sed -i -e "s@../wget-list@wget-list@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  96. $(Q)sed -i -e "s@../md5sums@md5sums@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  97. # $(Q)sed -i -e "s@\xa9@\©@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
  98. @echo "Output at $(BASEDIR)/$(NOCHUNKS_OUTPUT)"
  99. tmpdir:
  100. @echo "Creating and cleaning $(RENDERTMP)"
  101. $(Q)mkdir -p $(RENDERTMP)
  102. $(Q)rm -f $(RENDERTMP)/lfs*.xml
  103. $(Q)rm -f $(RENDERTMP)/*wget*
  104. $(Q)rm -f $(RENDERTMP)/*md5sum*
  105. $(Q)rm -f $(RENDERTMP)/*pdf.fo
  106. validate: tmpdir
  107. @echo "Processing bootscripts..."
  108. $(Q)bash process-scripts.sh
  109. @echo "Adjusting for revision $(REV)..."
  110. $(Q)xsltproc --nonet \
  111. --xinclude \
  112. --output $(RENDERTMP)/lfs-html2.xml \
  113. --stringparam profile.revision $(REV) \
  114. stylesheets/lfs-xsl/profile.xsl \
  115. index.xml
  116. @echo "Validating the book..."
  117. $(Q)xmllint --nonet \
  118. --noent \
  119. --postvalid \
  120. -o $(RENDERTMP)/lfs-full.xml \
  121. $(RENDERTMP)/lfs-html2.xml
  122. $(Q)rm -f appendices/*.script
  123. $(Q)./aux-file-data.sh $(RENDERTMP)/lfs-full.xml
  124. @echo "Validation complete."
  125. profile-html:
  126. @echo "Generating profiled XML for XHTML..."
  127. $(Q)xsltproc --nonet \
  128. --stringparam profile.condition html \
  129. --output $(RENDERTMP)/lfs-html.xml \
  130. stylesheets/lfs-xsl/profile.xsl \
  131. $(RENDERTMP)/lfs-full.xml
  132. wget-list: $(BASEDIR)/wget-list
  133. $(BASEDIR)/wget-list: stylesheets/wget-list.xsl chapter03/chapter03.xml \
  134. packages.ent patches.ent
  135. @echo "Generating consolidated wget list at $(BASEDIR)/wget-list ..."
  136. $(Q)mkdir -p $(BASEDIR)
  137. $(Q)xsltproc --nonet --xinclude \
  138. --stringparam profile.revision $(REV) \
  139. --output $(RENDERTMP)/sysd-wget.xml \
  140. stylesheets/lfs-xsl/profile.xsl \
  141. chapter03/chapter03.xml
  142. $(Q)xsltproc --xinclude --nonet \
  143. --output $(BASEDIR)/wget-list \
  144. stylesheets/wget-list.xsl \
  145. chapter03/chapter03.xml
  146. md5sums: $(BASEDIR)/md5sums
  147. $(BASEDIR)/md5sums: stylesheets/wget-list.xsl chapter03/chapter03.xml \
  148. packages.ent patches.ent
  149. @echo "Generating consolidated md5sum file at $(BASEDIR)/md5sums ..."
  150. $(Q)mkdir -p $(BASEDIR)
  151. $(Q)xsltproc --nonet --xinclude \
  152. --stringparam profile.revision $(REV) \
  153. --output $(RENDERTMP)/sysv-md5sum.xml \
  154. stylesheets/lfs-xsl/profile.xsl \
  155. chapter03/chapter03.xml
  156. $(Q)xsltproc --xinclude --nonet \
  157. --output $(BASEDIR)/md5sums \
  158. stylesheets/md5sum.xsl \
  159. $(RENDERTMP)/sysv-md5sum.xml
  160. $(Q)sed -i -e \
  161. "s/BOOTSCRIPTS-MD5SUM/$(shell md5sum lfs-bootscripts*.tar.bz2 | cut -d' ' -f1)/" \
  162. $(BASEDIR)/md5sums
  163. dump-commands: validate
  164. @echo "Dumping book commands..."
  165. # $(Q)xsltproc --nonet \
  166. # --output $(RENDERTMP)/lfs-html.xml \
  167. # --stringparam profile.revision $(REV) \
  168. # stylesheets/lfs-xsl/profile.xsl \
  169. # $(RENDERTMP)/lfs-full.xml
  170. $(Q)rm -rf $(DUMPDIR)
  171. $(Q)xsltproc --output $(DUMPDIR)/ \
  172. stylesheets/dump-commands.xsl \
  173. $(RENDERTMP)/lfs-html.xml
  174. @echo "Dumping book commands complete in $(DUMPDIR)"
  175. all: book nochunks pdf dump-commands
  176. .PHONY : all book dump-commands nochunks pdf profile-html tmpdir validate md5sums wget-list