source: Makefile@ 82d2dbe

Last change on this file since 82d2dbe was 364f16f, checked in by Krejzi <krejzi@…>, 10 years ago

Remove network scripts.

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

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