Makefile 7.2 KB

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