source: Makefile@ 05d60ce

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 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 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 05d60ce was 05d60ce, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Added a versose flag and other fixes to the Makefile.
Changed obfuscate.sh to try to prevent hangs when parsing nonchunked output.

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

  • Property mode set to 100644
File size: 3.0 KB
Line 
1BASEDIR=~/lfs-book
2DUMPDIR=~/lfs-commands
3CHUNK_QUIET=1
4ROOT_ID=""
5PDF_OUTPUT=LFS-BOOK.pdf
6NOCHUNKS_OUTPUT=LFS-BOOK.html
7
8ifdef V
9 Q =
10else
11 Q = @
12endif
13
14lfs: validxml profile-html
15 @echo "Generating chunked XHTML files..."
16 $(Q)xsltproc --nonet -stringparam chunk.quietly $(CHUNK_QUIET) \
17 -stringparam rootid $(ROOT_ID) -stringparam base.dir $(BASEDIR)/ \
18 stylesheets/lfs-chunked.xsl /tmp/lfs-html.xml
19
20 @echo "Copying CSS code and images..."
21 $(Q)if [ ! -e $(BASEDIR)/stylesheets ]; then \
22 mkdir -p $(BASEDIR)/stylesheets; \
23 fi;
24 $(Q)cp stylesheets/lfs-xsl/*.css $(BASEDIR)/stylesheets
25 $(Q)if [ ! -e $(BASEDIR)/images ]; then \
26 mkdir -p $(BASEDIR)/images; \
27 fi;
28 $(Q)cp images/*.png $(BASEDIR)/images
29 $(Q)cd $(BASEDIR)/; sed -i -e "s@../stylesheets@stylesheets@g" *.html
30 $(Q)cd $(BASEDIR)/; sed -i -e "s@../images@images@g" *.html
31
32 @echo "Running Tidy and obfuscate.sh..."
33 $(Q)for filename in `find $(BASEDIR) -name "*.html"`; do \
34 tidy -config tidy.conf $$filename; \
35 true; \
36 sh obfuscate.sh $$filename; \
37 sed -i -e "s@text/html@application/xhtml+xml@g" $$filename; \
38 done;
39
40 $(Q)$(MAKE) wget-list
41
42pdf: validxml
43 @echo "Generating profiled XML for PDF..."
44 $(Q)xsltproc --nonet --stringparam profile.condition pdf \
45 --output /tmp/lfs-pdf.xml stylesheets/lfs-xsl/profile.xsl \
46 /tmp/lfs-full.xml
47
48 @echo "Generating FO file..."
49 $(Q)xsltproc --nonet -stringparam rootid $(ROOT_ID) \
50 --output /tmp//lfs-pdf.fo stylesheets/lfs-pdf.xsl /tmp/lfs-pdf.xml
51 $(Q)sed -i -e 's/span="inherit"/span="all"/' /tmp/lfs-pdf.fo
52
53 @echo "Generating PDF file..."
54 $(Q)fop /tmp/lfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT)
55
56nochunks: validxml profile-html
57 @echo "Generating non chunked XHTML file..."
58 $(Q)xsltproc --nonet -stringparam profile.condition html \
59 -stringparam rootid $(ROOT_ID) --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
60 stylesheets/lfs-nochunks.xsl /tmp/lfs-html.xml
61
62 @echo "Running Tidy..."
63 $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
64 @echo "Running obfuscate.sh..."
65 $(Q)sh obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT)
66 $(Q)sed -i -e "s@text/html@application/xhtml+xml@g" \
67 $(BASEDIR)/$(NOCHUNKS_OUTPUT)
68
69validxml:
70 @echo "Validating the book..."
71 $(Q)xmllint --nonet --noent --xinclude --postvalid \
72 -o /tmp/lfs-full.xml index.xml
73
74profile-html: validxml
75 @echo "Generating profiled XML for XHTML..."
76 $(Q)xsltproc --nonet --stringparam profile.condition html \
77 --output /tmp/lfs-html.xml stylesheets/lfs-xsl/profile.xsl \
78 /tmp/lfs-full.xml
79
80wget-list:
81 @echo "Generating wget list..."
82 $(Q)mkdir -p $(BASEDIR)
83 $(Q)xsltproc --xinclude --nonet --output $(BASEDIR)/wget-list \
84 stylesheets/wget-list.xsl chapter03/chapter03.xml
85
86dump-commands: validxml
87 @echo "Dumping book commands..."
88 $(Q)xsltproc --output $(DUMPDIR)/ \
89 stylesheets/dump-commands.xsl /tmp/lfs-full.xml
90
91validate:
92 @echo "Validating the book..."
93 $(Q)xmllint --noout --nonet --xinclude --postvalid index.xml
94
95all: lfs nochunks pdf dump-commands
96
97.PHONY : all dump-commands lfs nochunks pdf profile-html validate validxml wget-list
Note: See TracBrowser for help on using the repository browser.