source: Makefile@ c948b40

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 c948b40 was c948b40, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Fop requires $BASEDIR be created before generating the PDF

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

  • Property mode set to 100644
File size: 3.1 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)if [ ! -e $(BASEDIR) ]; then \
55 mkdir -p $(BASEDIR); \
56 fi;
57 $(Q)fop /tmp/lfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT)
58
59nochunks: validxml profile-html
60 @echo "Generating non chunked XHTML file..."
61 $(Q)xsltproc --nonet -stringparam profile.condition html \
62 -stringparam rootid $(ROOT_ID) --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
63 stylesheets/lfs-nochunks.xsl /tmp/lfs-html.xml
64
65 @echo "Running Tidy..."
66 $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
67 @echo "Running obfuscate.sh..."
68 $(Q)sh obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT)
69 $(Q)sed -i -e "s@text/html@application/xhtml+xml@g" \
70 $(BASEDIR)/$(NOCHUNKS_OUTPUT)
71
72validxml:
73 @echo "Validating the book..."
74 $(Q)xmllint --nonet --noent --xinclude --postvalid \
75 -o /tmp/lfs-full.xml index.xml
76
77profile-html: validxml
78 @echo "Generating profiled XML for XHTML..."
79 $(Q)xsltproc --nonet --stringparam profile.condition html \
80 --output /tmp/lfs-html.xml stylesheets/lfs-xsl/profile.xsl \
81 /tmp/lfs-full.xml
82
83wget-list:
84 @echo "Generating wget list..."
85 $(Q)mkdir -p $(BASEDIR)
86 $(Q)xsltproc --xinclude --nonet --output $(BASEDIR)/wget-list \
87 stylesheets/wget-list.xsl chapter03/chapter03.xml
88
89dump-commands: validxml
90 @echo "Dumping book commands..."
91 $(Q)xsltproc --output $(DUMPDIR)/ \
92 stylesheets/dump-commands.xsl /tmp/lfs-full.xml
93
94validate:
95 @echo "Validating the book..."
96 $(Q)xmllint --noout --nonet --xinclude --postvalid index.xml
97
98all: lfs nochunks pdf dump-commands
99
100.PHONY : all dump-commands lfs nochunks pdf profile-html validate validxml wget-list
Note: See TracBrowser for help on using the repository browser.