source: Makefile@ 65ef924

multilib
Last change on this file since 65ef924 was 349012b, checked in by Thomas Trepl <thomas@…>, 8 months ago

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 8.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
[cdc6053]29 DUMPDIR ?= ~/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
[b3f1ebb3]37ifndef ARCH
38 ARCH = default
39endif
40ifneq ($(ARCH), default)
[fd48baa]41 ifneq ($(ARCH), ml_32)
42 ifneq ($(ARCH), ml_x32)
43 ifneq ($(ARCH), ml_all)
44 $(error ARCH must be either 'default' (default if unset), 'ml_32', 'ml_x32' or 'ml_all'.)
45 endif
46 endif
[b3f1ebb3]47 endif
48endif
49
[35a5259]50book: validate profile-html
51 @echo "Generating chunked XHTML files at $(BASEDIR)/ ..."
[1118b17]52 $(Q)xsltproc --nonet \
53 --stringparam chunk.quietly $(CHUNK_QUIET) \
54 --stringparam rootid "$(ROOT_ID)" \
55 --stringparam base.dir $(BASEDIR)/ \
56 stylesheets/lfs-chunked.xsl \
[23a0f82]57 $(RENDERTMP)/lfs-html.xml
[287ea55]58
[0e6d3c0]59 @echo "Copying CSS code and images..."
[77ab7f3]60 $(Q)mkdir -p $(BASEDIR)/stylesheets
[05d60ce]61 $(Q)cp stylesheets/lfs-xsl/*.css $(BASEDIR)/stylesheets
[df732b5]62 $(Q)sed -i 's|../stylesheet|stylesheet|' $(BASEDIR)/index.html
[1c27a53]63
[77ab7f3]64 $(Q)mkdir -p $(BASEDIR)/images
[05d60ce]65 $(Q)cp images/*.png $(BASEDIR)/images
[287ea55]66
[05d60ce]67 @echo "Running Tidy and obfuscate.sh..."
68 $(Q)for filename in `find $(BASEDIR) -name "*.html"`; do \
[77ab7f3]69 tidy -config tidy.conf $$filename; \
70 true; \
71 /bin/bash obfuscate.sh $$filename; \
72 sed -e "s@text/html@application/xhtml+xml@g" \
73 -i $$filename; \
74 done;
[5470c67]75
[77ab7f3]76 $(Q)$(MAKE) --no-print-directory wget-list md5sums
[3a4594b]77
[924ab90]78pdf: validate
[0e6d3c0]79 @echo "Generating profiled XML for PDF..."
[77ab7f3]80 $(Q)xsltproc --nonet \
81 --stringparam profile.condition pdf \
82 --output $(RENDERTMP)/lfs-pdf.xml \
83 stylesheets/lfs-xsl/profile.xsl \
[855fda1]84 $(RENDERTMP)/lfs-full.xml
[0e6d3c0]85
86 @echo "Generating FO file..."
[77ab7f3]87 $(Q)xsltproc --nonet \
[188e34c]88 --stringparam rootid "$(ROOT_ID)" \
89 --output $(RENDERTMP)/lfs-pdf.fo \
90 stylesheets/lfs-pdf.xsl \
91 $(RENDERTMP)/lfs-pdf.xml
92
93 $(Q)sed -i -e 's/span="inherit"/span="all"/' $(RENDERTMP)/lfs-pdf.fo
94 $(Q)bash pdf-fixups.sh $(RENDERTMP)/lfs-pdf.fo
95
96 @echo "Generating PDF file..."
[855fda1]97 $(Q)mkdir -p $(RENDERTMP)/images
98 $(Q)cp images/*.png $(RENDERTMP)/images
[188e34c]99
[855fda1]100 $(Q)mkdir -p $(BASEDIR)
[e8a2adc]101
[188e34c]102 $(Q)fop -q $(RENDERTMP)/lfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT) 2>fop.log
103 @echo "$(BASEDIR)/$(PDF_OUTPUT) created"
104 @echo "fop.log created"
105
[924ab90]106nochunks: validate profile-html
[0e6d3c0]107 @echo "Generating non chunked XHTML file..."
[77ab7f3]108 $(Q)xsltproc --nonet \
109 --stringparam rootid "$(ROOT_ID)" \
110 --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
111 stylesheets/lfs-nochunks.xsl \
[c7e74d6]112 $(RENDERTMP)/lfs-html.xml
113# $(RENDERTMP)/lfs-html2.xml
[0e6d3c0]114
115 @echo "Running Tidy..."
[05d60ce]116 $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
[77ab7f3]117
[05d60ce]118 @echo "Running obfuscate.sh..."
[22bcbdd]119 $(Q)bash obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT)
120 $(Q)sed -i -e "s@text/html@application/xhtml+xml@g" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
121 $(Q)sed -i -e "s@../wget-list@wget-list@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
[e679f0b]122 $(Q)sed -i -e "s@../md5sums@md5sums@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
[77ab7f3]123 $(Q)sed -i -e "s@\xa9@\&copy;@" $(BASEDIR)/$(NOCHUNKS_OUTPUT)
124
125 @echo "Output at $(BASEDIR)/$(NOCHUNKS_OUTPUT)"
126
[106dc42]127tmpdir:
128 @echo "Creating and cleaning $(RENDERTMP)"
[77ab7f3]129 $(Q)mkdir -p $(RENDERTMP)
130 $(Q)rm -f $(RENDERTMP)/lfs*.xml
[35a5259]131 $(Q)rm -f $(RENDERTMP)/*wget*
132 $(Q)rm -f $(RENDERTMP)/*md5sum*
[77ab7f3]133 $(Q)rm -f $(RENDERTMP)/*pdf.fo
[106dc42]134
[59483809]135validate: tmpdir version
[1c48007]136 @echo "Processing bootscripts..."
[6d13ffb]137 $(Q)bash process-scripts.sh
[35a5259]138
139 @echo "Adjusting for revision $(REV)..."
140 $(Q)xsltproc --nonet \
141 --xinclude \
142 --output $(RENDERTMP)/lfs-html2.xml \
143 --stringparam profile.revision $(REV) \
[b3f1ebb3]144 --stringparam profile.arch $(ARCH) \
[35a5259]145 stylesheets/lfs-xsl/profile.xsl \
146 index.xml
147
[0e6d3c0]148 @echo "Validating the book..."
[77ab7f3]149 $(Q)xmllint --nonet \
150 --noent \
151 --postvalid \
[99260fe]152 -o $(RENDERTMP)/lfs-full.xml \
[35a5259]153 $(RENDERTMP)/lfs-html2.xml
154
[1c48007]155 $(Q)rm -f appendices/*.script
[63f4150]156 $(Q)./aux-file-data.sh $(RENDERTMP)/lfs-full.xml
[924ab90]157 @echo "Validation complete."
[1c48007]158
[3781c69]159profile-html:
[0e6d3c0]160 @echo "Generating profiled XML for XHTML..."
[77ab7f3]161 $(Q)xsltproc --nonet \
162 --stringparam profile.condition html \
[99260fe]163 --output $(RENDERTMP)/lfs-html.xml \
[77ab7f3]164 stylesheets/lfs-xsl/profile.xsl \
[99260fe]165 $(RENDERTMP)/lfs-full.xml
[0e6d3c0]166
[ca22630]167wget-list: $(BASEDIR)/wget-list $(BASEDIR)/wget-list-$(REV)
[77ab7f3]168$(BASEDIR)/wget-list: stylesheets/wget-list.xsl chapter03/chapter03.xml \
[6218cdb]169 packages.ent patches.ent general.ent
[6288602]170 @echo "Generating consolidated wget list at $(BASEDIR)/wget-list ..."
[05d60ce]171 $(Q)mkdir -p $(BASEDIR)
[77ab7f3]172 $(Q)xsltproc --xinclude --nonet \
173 --output $(BASEDIR)/wget-list \
[99260fe]174 stylesheets/wget-list.xsl \
[77ab7f3]175 chapter03/chapter03.xml
176
[ca22630]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
[064222a]190md5sums: $(BASEDIR)/md5sums
[77ab7f3]191$(BASEDIR)/md5sums: stylesheets/wget-list.xsl chapter03/chapter03.xml \
192 packages.ent patches.ent
[6288602]193 @echo "Generating consolidated md5sum file at $(BASEDIR)/md5sums ..."
[daed5a3]194 $(Q)mkdir -p $(BASEDIR)
[77ab7f3]195
[ca22630]196 $(Q)xsltproc --nonet --xinclude \
[35a5259]197 --stringparam profile.revision $(REV) \
[6dfcfecc]198 --stringparam profile.arch $(ARCH) \
[ca22630]199 --output $(RENDERTMP)/md5sum.xml \
[77ab7f3]200 stylesheets/lfs-xsl/profile.xsl \
201 chapter03/chapter03.xml
202
[ca22630]203 $(Q)xsltproc --xinclude --nonet \
[77ab7f3]204 --output $(BASEDIR)/md5sums \
205 stylesheets/md5sum.xsl \
[ca22630]206 $(RENDERTMP)/md5sum.xml
[22bcbdd]207 $(Q)sed -i -e \
[b2c61c6]208 "s/BOOTSCRIPTS-MD5SUM/$(shell md5sum lfs-bootscripts*.tar.xz | cut -d' ' -f1)/" \
[22bcbdd]209 $(BASEDIR)/md5sums
[daed5a3]210
[59483809]211version:
[4467b18d]212 $(Q)./git-version.sh $(REV)
[59483809]213
[cdc6053]214dump-commands: validate
215 @echo "Dumping book commands..."
[77ab7f3]216
[cdc6053]217 $(Q)rm -rf $(DUMPDIR)
[77ab7f3]218
[cdc6053]219 $(Q)xsltproc --output $(DUMPDIR)/ \
220 stylesheets/dump-commands.xsl \
221 $(RENDERTMP)/lfs-full.xml
222 @echo "Dumping book commands complete in $(DUMPDIR)"
[77ab7f3]223
[cdc6053]224all: book nochunks pdf dump-commands
[22bcbdd]225
[c858ba4e]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
[536b6aa]236
Note: See TracBrowser for help on using the repository browser.