source: Makefile@ 4a9c50a

multilib
Last change on this file since 4a9c50a was 4a9c50a, checked in by Thomas Trepl <thomas@…>, 5 months ago

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 7.9 KB
Line 
1# vim:ts=3
2#BASEDIR = ~/lfs-book
3#SYSDDIR = ~/lfs-systemd
4#DUMPDIR = ~/lfs-commands
5RENDERTMP = $(HOME)/tmp
6CHUNK_QUIET = 1
7ROOT_ID =
8SHELL = /bin/bash
9
10ifdef V
11 Q =
12else
13 Q = @
14endif
15
16ifndef REV
17 REV = sysv
18endif
19
20ifneq ($(REV), sysv)
21 ifneq ($(REV), systemd)
22 $(error REV must be 'sysv' (default) or 'systemd'.)
23 endif
24endif
25
26ifeq ($(REV), sysv)
27 BASEDIR ?= ~/public_html/lfs-book
28 PDF_OUTPUT ?= LFS-BOOK.pdf
29 NOCHUNKS_OUTPUT ?= LFS-BOOK.html
30 DUMPDIR ?= ~/lfs-commands
31else
32 BASEDIR ?= ~/public_html/lfs-systemd
33 PDF_OUTPUT ?= LFS-SYSD-BOOK.pdf
34 NOCHUNKS_OUTPUT ?= LFS-SYSD-BOOK.html
35 DUMPDIR ?= ~/lfs-sysd-commands
36endif
37
38ifndef ARCH
39 ARCH = default
40endif
41ifneq ($(ARCH), default)
42 ifneq ($(ARCH), ml_32)
43 ifneq ($(ARCH), ml_x32)
44 ifneq ($(ARCH), ml_all)
45 $(error ARCH must be either 'default' (default if unset), 'ml_32', 'ml_x32' or 'ml_all'.)
46 endif
47 endif
48 endif
49endif
50
51book: validate profile-html
52 @echo "Generating chunked XHTML files at $(BASEDIR)/ ..."
53 $(Q)xsltproc --nonet \
54 --stringparam chunk.quietly $(CHUNK_QUIET) \
55 --stringparam rootid "$(ROOT_ID)" \
56 --stringparam base.dir $(BASEDIR)/ \
57 stylesheets/lfs-chunked.xsl \
58 $(RENDERTMP)/lfs-html.xml
59
60 @echo "Copying CSS code and images..."
61 $(Q)mkdir -p $(BASEDIR)/stylesheets
62 $(Q)cp stylesheets/lfs-xsl/*.css $(BASEDIR)/stylesheets
63 $(Q)sed -i 's|../stylesheet|stylesheet|' $(BASEDIR)/index.html
64
65 $(Q)mkdir -p $(BASEDIR)/images
66 $(Q)cp images/*.png $(BASEDIR)/images
67
68 @echo "Running Tidy and obfuscate.sh..."
69 $(Q)for filename in `find $(BASEDIR) -name "*.html"`; do \
70 tidy -config tidy.conf $$filename; \
71 true; \
72 /bin/bash obfuscate.sh $$filename; \
73 sed -e "s@text/html@application/xhtml+xml@g" \
74 -i $$filename; \
75 done;
76
77 $(Q)$(MAKE) --no-print-directory wget-list md5sums
78
79pdf: validate
80 @echo "Generating profiled XML for PDF..."
81 $(Q)xsltproc --nonet \
82 --stringparam profile.condition pdf \
83 --output $(RENDERTMP)/lfs-pdf.xml \
84 stylesheets/lfs-xsl/profile.xsl \
85 $(RENDERTMP)/lfs-full.xml
86
87 @echo "Generating FO file..."
88 $(Q)xsltproc --nonet \
89 --stringparam rootid "$(ROOT_ID)" \
90 --output $(RENDERTMP)/lfs-pdf.fo \
91 stylesheets/lfs-pdf.xsl \
92 $(RENDERTMP)/lfs-pdf.xml
93
94 $(Q)sed -i -e 's/span="inherit"/span="all"/' $(RENDERTMP)/lfs-pdf.fo
95 $(Q)bash pdf-fixups.sh $(RENDERTMP)/lfs-pdf.fo
96
97 @echo "Generating PDF file..."
98 $(Q)mkdir -p $(RENDERTMP)/images
99 $(Q)cp images/*.png $(RENDERTMP)/images
100
101 $(Q)mkdir -p $(BASEDIR)
102
103 $(Q)fop -q $(RENDERTMP)/lfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT) 2>fop.log
104 @echo "$(BASEDIR)/$(PDF_OUTPUT) created"
105 @echo "fop.log created"
106
107nochunks: validate profile-html
108 @echo "Generating non chunked XHTML file..."
109 $(Q)xsltproc --nonet \
110 --stringparam rootid "$(ROOT_ID)" \
111 --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
112 stylesheets/lfs-nochunks.xsl \
113 $(RENDERTMP)/lfs-html.xml
114# $(RENDERTMP)/lfs-html2.xml
115
116 @echo "Running Tidy..."
117 $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
118
119 @echo "Running obfuscate.sh..."
120 $(Q)bash obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT)
121 $(Q)sed -i -e "s@text/html@application/xhtml+xml@g" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
122 $(Q)sed -i -e "s@../wget-list@wget-list@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
123 $(Q)sed -i -e "s@../md5sums@md5sums@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
124
125 @echo "Output at $(BASEDIR)/$(NOCHUNKS_OUTPUT)"
126
127tmpdir:
128 @echo "Creating and cleaning $(RENDERTMP)"
129 $(Q)mkdir -p $(RENDERTMP)
130 $(Q)rm -f $(RENDERTMP)/lfs*.xml
131 $(Q)rm -f $(RENDERTMP)/*wget*
132 $(Q)rm -f $(RENDERTMP)/*md5sum*
133 $(Q)rm -f $(RENDERTMP)/*pdf.fo
134
135validate: tmpdir version
136 @echo "Processing bootscripts..."
137 $(Q)bash process-scripts.sh
138
139 @echo "Adjusting for revision $(REV)..."
140 $(Q)xsltproc --nonet \
141 --xinclude \
142 --output $(RENDERTMP)/lfs-html2.xml \
143 --stringparam profile.revision $(REV) \
144 --stringparam profile.arch $(ARCH) \
145 stylesheets/lfs-xsl/profile.xsl \
146 index.xml
147
148 @echo "Validating the book..."
149 $(Q)xmllint --nonet \
150 --noent \
151 --postvalid \
152 -o $(RENDERTMP)/lfs-full.xml \
153 $(RENDERTMP)/lfs-html2.xml
154
155 $(Q)rm -f appendices/*.script
156 $(Q)./aux-file-data.sh $(RENDERTMP)/lfs-full.xml
157 @echo "Validation complete."
158
159profile-html:
160 @echo "Generating profiled XML for XHTML..."
161 $(Q)xsltproc --nonet \
162 --stringparam profile.condition html \
163 --output $(RENDERTMP)/lfs-html.xml \
164 stylesheets/lfs-xsl/profile.xsl \
165 $(RENDERTMP)/lfs-full.xml
166
167wget-list: $(BASEDIR)/wget-list $(BASEDIR)/wget-list-$(REV)
168$(BASEDIR)/wget-list: stylesheets/wget-list.xsl chapter03/chapter03.xml \
169 packages.ent patches.ent general.ent
170 @echo "Generating consolidated wget list at $(BASEDIR)/wget-list ..."
171 $(Q)mkdir -p $(BASEDIR)
172 $(Q)xsltproc --xinclude --nonet \
173 --output $(BASEDIR)/wget-list \
174 stylesheets/wget-list.xsl \
175 chapter03/chapter03.xml
176
177$(BASEDIR)/wget-list-$(REV): stylesheets/wget-list.xsl \
178 chapter03/chapter03.xml \
179 packages.ent patches.ent general.ent
180 $(Q)xsltproc --nonet --xinclude \
181 --stringparam profile.revision $(REV) \
182 --output $(RENDERTMP)/wget-list.xml \
183 stylesheets/lfs-xsl/profile.xsl \
184 chapter03/chapter03.xml
185 $(Q)xsltproc --xinclude --nonet \
186 --output $(BASEDIR)/wget-list-$(REV) \
187 stylesheets/wget-list.xsl \
188 $(RENDERTMP)/wget-list.xml
189
190md5sums: $(BASEDIR)/md5sums
191$(BASEDIR)/md5sums: stylesheets/wget-list.xsl chapter03/chapter03.xml \
192 packages.ent patches.ent
193 @echo "Generating consolidated md5sum file at $(BASEDIR)/md5sums ..."
194 $(Q)mkdir -p $(BASEDIR)
195
196 $(Q)xsltproc --nonet --xinclude \
197 --stringparam profile.revision $(REV) \
198 --stringparam profile.arch $(ARCH) \
199 --output $(RENDERTMP)/md5sum.xml \
200 stylesheets/lfs-xsl/profile.xsl \
201 chapter03/chapter03.xml
202
203 $(Q)xsltproc --xinclude --nonet \
204 --output $(BASEDIR)/md5sums \
205 stylesheets/md5sum.xsl \
206 $(RENDERTMP)/md5sum.xml
207 $(Q)sed -i -e \
208 "s/BOOTSCRIPTS-MD5SUM/$(shell md5sum lfs-bootscripts*.tar.xz | cut -d' ' -f1)/" \
209 $(BASEDIR)/md5sums
210
211version:
212 $(Q)./git-version.sh $(REV)
213
214dump-commands: validate
215 @echo "Dumping book commands..."
216
217 $(Q)rm -rf $(DUMPDIR)
218
219 $(Q)xsltproc --output $(DUMPDIR)/ \
220 stylesheets/dump-commands.xsl \
221 $(RENDERTMP)/lfs-full.xml
222 @echo "Dumping book commands complete in $(DUMPDIR)"
223
224all: book nochunks pdf dump-commands
225
226dist:
227 $(Q)DIST=/tmp/LFS-RELEASE ./git-version.sh $(REV)
228 $(Q)rm -f lfs-$$(</tmp/LFS-RELEASE).tar.xz
229 $(Q)tar cJf lfs-$$(</tmp/LFS-RELEASE).tar.xz \
230 $(shell git ls-tree HEAD . --name-only) version.ent \
231 -C /tmp LFS-RELEASE \
232 --transform "s,^,lfs-$$(</tmp/LFS-RELEASE)/,"
233 $(Q)echo "Generated XML tarball lfs-$$(</tmp/LFS-RELEASE).tar.xz"
234
235.PHONY : all book dump-commands nochunks pdf profile-html tmpdir validate md5sums wget-list version dist
236
Note: See TracBrowser for help on using the repository browser.