source: Makefile@ 675606b

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 675606b was 675606b, checked in by Bruce Dubbs <bdubbs@…>, 4 years ago

Split Chapter 5 into three separate chapters.
Implement a new method of cross-building the LFS tool chain
and other tools to simplify the method of isolating the
new system from the original host. This will be the start of
LFS-10.0.

Move old trunk/BOOK to branches/old-trunk.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11946 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 7.0 KB
RevLine 
[35a5259]1#BASEDIR = ~/lfs-book
2#SYSDDIR = ~/lfs-systemd
3#DUMPDIR = ~/lfs-commands
[7d39455]4RENDERTMP = $(HOME)/tmp
5CHUNK_QUIET = 1
6ROOT_ID =
[5fde2f94]7SHELL = /bin/bash
[3a4594b]8
[05d60ce]9ifdef V
10 Q =
11else
12 Q = @
13endif
14
[35a5259]15ifndef REV
16 REV = sysv
17endif
18
19ifneq ($(REV), sysv)
20 ifneq ($(REV), systemd)
21 $(error REV must be 'sysv' (default) or 'systemd'.)
22 endif
23endif
24
25ifeq ($(REV), sysv)
[1aff37f]26 BASEDIR ?= ~/lfs-book
27 PDF_OUTPUT ?= LFS-BOOK.pdf
28 NOCHUNKS_OUTPUT ?= LFS-BOOK.html
[fcc02767]29 DUMPDIR ?= ~/cross-lfs-commands
[35a5259]30else
[1aff37f]31 BASEDIR ?= ~/lfs-systemd
32 PDF_OUTPUT ?= LFS-SYSD-BOOK.pdf
33 NOCHUNKS_OUTPUT ?= LFS-SYSD-BOOK.html
34 DUMPDIR ?= ~/lfs-sysd-commands
[35a5259]35endif
[1118b17]36
[35a5259]37book: validate profile-html
38 @echo "Generating chunked XHTML files at $(BASEDIR)/ ..."
[1118b17]39 $(Q)xsltproc --nonet \
40 --stringparam chunk.quietly $(CHUNK_QUIET) \
41 --stringparam rootid "$(ROOT_ID)" \
42 --stringparam base.dir $(BASEDIR)/ \
43 stylesheets/lfs-chunked.xsl \
[23a0f82]44 $(RENDERTMP)/lfs-html.xml
[287ea55]45
[0e6d3c0]46 @echo "Copying CSS code and images..."
[77ab7f3]47 $(Q)mkdir -p $(BASEDIR)/stylesheets
[05d60ce]48 $(Q)cp stylesheets/lfs-xsl/*.css $(BASEDIR)/stylesheets
[1c27a53]49
[77ab7f3]50 $(Q)mkdir -p $(BASEDIR)/images
[05d60ce]51 $(Q)cp images/*.png $(BASEDIR)/images
[287ea55]52
[05d60ce]53 @echo "Running Tidy and obfuscate.sh..."
54 $(Q)for filename in `find $(BASEDIR) -name "*.html"`; do \
[77ab7f3]55 tidy -config tidy.conf $$filename; \
56 true; \
57 /bin/bash obfuscate.sh $$filename; \
58 sed -e "s@text/html@application/xhtml+xml@g" \
59 -e "s/\xa9/\&copy;/ " \
60 -i $$filename; \
61 done;
[5470c67]62
[77ab7f3]63 $(Q)$(MAKE) --no-print-directory wget-list md5sums
[3a4594b]64
[924ab90]65pdf: validate
[0e6d3c0]66 @echo "Generating profiled XML for PDF..."
[77ab7f3]67 $(Q)xsltproc --nonet \
68 --stringparam profile.condition pdf \
69 --output $(RENDERTMP)/lfs-pdf.xml \
70 stylesheets/lfs-xsl/profile.xsl \
[672ea43]71 $(RENDERTMP)/lfs-full.xml
[0e6d3c0]72
73 @echo "Generating FO file..."
[77ab7f3]74 $(Q)xsltproc --nonet \
[188e34c]75 --stringparam rootid "$(ROOT_ID)" \
76 --output $(RENDERTMP)/lfs-pdf.fo \
77 stylesheets/lfs-pdf.xsl \
78 $(RENDERTMP)/lfs-pdf.xml
79
80 $(Q)sed -i -e 's/span="inherit"/span="all"/' $(RENDERTMP)/lfs-pdf.fo
81 $(Q)bash pdf-fixups.sh $(RENDERTMP)/lfs-pdf.fo
82
83 @echo "Generating PDF file..."
[855fda1]84 $(Q)mkdir -p $(RENDERTMP)/images
85 $(Q)cp images/*.png $(RENDERTMP)/images
[188e34c]86
[855fda1]87 $(Q)mkdir -p $(BASEDIR)
[e8a2adc]88
[188e34c]89 $(Q)fop -q $(RENDERTMP)/lfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT) 2>fop.log
90 @echo "$(BASEDIR)/$(PDF_OUTPUT) created"
91 @echo "fop.log created"
92
[924ab90]93nochunks: validate profile-html
[0e6d3c0]94 @echo "Generating non chunked XHTML file..."
[77ab7f3]95 $(Q)xsltproc --nonet \
96 --stringparam rootid "$(ROOT_ID)" \
97 --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
98 stylesheets/lfs-nochunks.xsl \
[672ea43]99 $(RENDERTMP)/lfs-html.xml
[85ce0fca]100# $(RENDERTMP)/lfs-html2.xml
[0e6d3c0]101
102 @echo "Running Tidy..."
[05d60ce]103 $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
[77ab7f3]104
[05d60ce]105 @echo "Running obfuscate.sh..."
[22bcbdd]106 $(Q)bash obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT)
107 $(Q)sed -i -e "s@text/html@application/xhtml+xml@g" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
108 $(Q)sed -i -e "s@../wget-list@wget-list@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
[e679f0b]109 $(Q)sed -i -e "s@../md5sums@md5sums@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
[77ab7f3]110 $(Q)sed -i -e "s@\xa9@\&copy;@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
111
112 @echo "Output at $(BASEDIR)/$(NOCHUNKS_OUTPUT)"
113
[106dc42]114tmpdir:
115 @echo "Creating and cleaning $(RENDERTMP)"
[77ab7f3]116 $(Q)mkdir -p $(RENDERTMP)
117 $(Q)rm -f $(RENDERTMP)/lfs*.xml
[35a5259]118 $(Q)rm -f $(RENDERTMP)/*wget*
119 $(Q)rm -f $(RENDERTMP)/*md5sum*
[77ab7f3]120 $(Q)rm -f $(RENDERTMP)/*pdf.fo
[106dc42]121
[924ab90]122validate: tmpdir
[1c48007]123 @echo "Processing bootscripts..."
[6d13ffb]124 $(Q)bash process-scripts.sh
[35a5259]125
126 @echo "Adjusting for revision $(REV)..."
127 $(Q)xsltproc --nonet \
128 --xinclude \
129 --output $(RENDERTMP)/lfs-html2.xml \
130 --stringparam profile.revision $(REV) \
131 stylesheets/lfs-xsl/profile.xsl \
132 index.xml
133
[0e6d3c0]134 @echo "Validating the book..."
[77ab7f3]135 $(Q)xmllint --nonet \
136 --noent \
137 --postvalid \
138 -o $(RENDERTMP)/lfs-full.xml \
[35a5259]139 $(RENDERTMP)/lfs-html2.xml
140
[1c48007]141 $(Q)rm -f appendices/*.script
[63f4150]142 $(Q)./aux-file-data.sh $(RENDERTMP)/lfs-full.xml
[924ab90]143 @echo "Validation complete."
[1c48007]144
[1118b17]145profile-html:
[0e6d3c0]146 @echo "Generating profiled XML for XHTML..."
[77ab7f3]147 $(Q)xsltproc --nonet \
148 --stringparam profile.condition html \
149 --output $(RENDERTMP)/lfs-html.xml \
150 stylesheets/lfs-xsl/profile.xsl \
[23a0f82]151 $(RENDERTMP)/lfs-full.xml
[0e6d3c0]152
[064222a]153wget-list: $(BASEDIR)/wget-list
[77ab7f3]154$(BASEDIR)/wget-list: stylesheets/wget-list.xsl chapter03/chapter03.xml \
155 packages.ent patches.ent
[6288602]156 @echo "Generating consolidated wget list at $(BASEDIR)/wget-list ..."
[05d60ce]157 $(Q)mkdir -p $(BASEDIR)
[77ab7f3]158
[d4407c7]159# $(Q)xsltproc --nonet --xinclude \
160# --stringparam profile.revision $(REV) \
161# --output $(RENDERTMP)/sysd-wget.xml \
162# stylesheets/lfs-xsl/profile.xsl \
163# chapter03/chapter03.xml
[77ab7f3]164
165 $(Q)xsltproc --xinclude --nonet \
166 --output $(BASEDIR)/wget-list \
167 stylesheets/wget-list.xsl \
168 chapter03/chapter03.xml
169
[064222a]170md5sums: $(BASEDIR)/md5sums
[77ab7f3]171$(BASEDIR)/md5sums: stylesheets/wget-list.xsl chapter03/chapter03.xml \
172 packages.ent patches.ent
[6288602]173 @echo "Generating consolidated md5sum file at $(BASEDIR)/md5sums ..."
[daed5a3]174 $(Q)mkdir -p $(BASEDIR)
[77ab7f3]175
176 $(Q)xsltproc --nonet --xinclude \
[35a5259]177 --stringparam profile.revision $(REV) \
[77ab7f3]178 --output $(RENDERTMP)/sysv-md5sum.xml \
179 stylesheets/lfs-xsl/profile.xsl \
180 chapter03/chapter03.xml
181
182 $(Q)xsltproc --xinclude --nonet \
183 --output $(BASEDIR)/md5sums \
184 stylesheets/md5sum.xsl \
185 $(RENDERTMP)/sysv-md5sum.xml
[22bcbdd]186 $(Q)sed -i -e \
[43194f0]187 "s/BOOTSCRIPTS-MD5SUM/$(shell md5sum lfs-bootscripts*.tar.xz | cut -d' ' -f1)/" \
[22bcbdd]188 $(BASEDIR)/md5sums
[daed5a3]189
[f0ba388]190#dump-commands: validate
191# @echo "Dumping book commands..."
[cbd8bf0f]192# $(Q)xsltproc --nonet \
193# --output $(RENDERTMP)/lfs-html.xml \
194# --stringparam profile.revision $(REV) \
195# stylesheets/lfs-xsl/profile.xsl \
196# $(RENDERTMP)/lfs-full.xml
[77ab7f3]197
[f0ba388]198# $(Q)rm -rf $(DUMPDIR)
[77ab7f3]199
[f0ba388]200# $(Q)xsltproc --output $(DUMPDIR)/ \
201# stylesheets/dump-commands.xsl \
202# $(RENDERTMP)/lfs-html.xml
203# @echo "Dumping book commands complete in $(DUMPDIR)"
[77ab7f3]204
[f0ba388]205all: book nochunks pdf # dump-commands
[22bcbdd]206
[35a5259]207.PHONY : all book dump-commands nochunks pdf profile-html tmpdir validate md5sums wget-list
[536b6aa]208
Note: See TracBrowser for help on using the repository browser.