source: Makefile@ 802395e

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 12.2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gimp3 gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/for-12.3 xry111/intltool xry111/llvm18 xry111/soup3 xry111/spidermonkey128 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 802395e was 5d463a51, checked in by Dan Nichilson <dnicholson@…>, 16 years ago

More specific output when running chunked vs. non-chunked HTML

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@7362 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.7 KB
RevLine 
[19599c63]1# Makefile for BLFS Book generation.
2# By Tushar Teredesai <tushar@linuxfromscratch.org>
3# 2004-01-31
[5cd0959d]4# $LastChangedBy$
5# $Date$
[35d9770]6
[19599c63]7# Adjust these to suit your installation
[1d36178d]8BASEDIR ?= $(HOME)/public_html/blfs-book-xsl
9DUMPDIR ?= $(HOME)/blfs-commands
10RENDERTMP ?= tmp
[f3e7a94]11CHUNK_QUIET = 1
12ROOT_ID =
13PDF_OUTPUT = BLFS-BOOK.pdf
14NOCHUNKS_OUTPUT = BLFS-BOOK.html
[35d9770]15
16ifdef V
17 Q =
18else
19 Q = @
20endif
21
[575bba80]22blfs: html wget-list
23all: blfs nochunks pdf
24world: all blfs-patch-list dump-commands test-links
25
26html: $(BASEDIR)/index.html
27$(BASEDIR)/index.html: $(RENDERTMP)/blfs-html.xml
[35d9770]28 @echo "Generating chunked XHTML files..."
29 $(Q)xsltproc --nonet -stringparam chunk.quietly $(CHUNK_QUIET) \
[f3e7a94]30 -stringparam rootid "$(ROOT_ID)" -stringparam base.dir $(BASEDIR)/ \
[adf0149]31 stylesheets/blfs-chunked.xsl $(RENDERTMP)/blfs-html.xml
[35d9770]32
33 @echo "Copying CSS code and images..."
34 $(Q)if [ ! -e $(BASEDIR)/stylesheets ]; then \
[527966e]35 mkdir -p $(BASEDIR)/stylesheets; \
[eff3826]36 fi;
[35d9770]37 $(Q)cp stylesheets/lfs-xsl/*.css $(BASEDIR)/stylesheets
38 $(Q)if [ ! -e $(BASEDIR)/images ]; then \
[527966e]39 mkdir -p $(BASEDIR)/images; \
[eff3826]40 fi;
[35d9770]41 $(Q)cp images/*.png $(BASEDIR)/images
42 $(Q)cd $(BASEDIR)/; sed -i -e "s@../stylesheets@stylesheets@g" *.html
43 $(Q)cd $(BASEDIR)/; sed -i -e "s@../images@images@g" *.html
[4a02298]44
[5d463a51]45 @echo "Running Tidy and obfuscate.sh on chunked XHTML..."
[35d9770]46 $(Q)for filename in `find $(BASEDIR) -name "*.html"`; do \
[4a02298]47 tidy -config tidy.conf $$filename; \
48 true; \
49 sh obfuscate.sh $$filename; \
50 sed -i -e "s@text/html@application/xhtml+xml@g" $$filename; \
51 done;
[eff3826]52
[575bba80]53pdf: $(BASEDIR)/$(PDF_OUTPUT)
54$(RENDERTMP)/blfs-pdf.xml: $(RENDERTMP)/blfs-full.xml
[35d9770]55 @echo "Generating profiled XML for PDF..."
56 $(Q)xsltproc --nonet --stringparam profile.condition pdf \
[adf0149]57 --output $(RENDERTMP)/blfs-pdf.xml stylesheets/lfs-xsl/profile.xsl \
58 $(RENDERTMP)/blfs-full.xml
[8e1efd0]59
[575bba80]60$(RENDERTMP)/blfs-pdf.fo: $(RENDERTMP)/blfs-full.xml
[35d9770]61 @echo "Generating FO file..."
[adf9e23]62 $(Q)xsltproc --nonet -stringparam rootid "$(ROOT_ID)" \
[575bba80]63 --output $(RENDERTMP)/blfs-pdf.fo stylesheets/blfs-pdf.xsl \
64 $(RENDERTMP)/blfs-pdf.xml
[adf0149]65 $(Q)sed -i -e 's/span="inherit"/span="all"/' $(RENDERTMP)/blfs-pdf.fo
[d53eb0e]66
[575bba80]67$(BASEDIR)/$(PDF_OUTPUT): $(RENDERTMP)/blfs-pdf.fo
[35d9770]68 @echo "Generating PDF file..."
69 $(Q)if [ ! -e $(BASEDIR) ]; then \
70 mkdir -p $(BASEDIR); \
71 fi;
[adf0149]72 $(Q)fop $(RENDERTMP)/blfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT)
[35d9770]73
[575bba80]74nochunks: $(BASEDIR)/$(NOCHUNKS_OUTPUT)
75$(BASEDIR)/$(NOCHUNKS_OUTPUT): $(RENDERTMP)/blfs-html.xml
[5d463a51]76 @echo "Generating non-chunked XHTML file..."
[adf9e23]77 $(Q)xsltproc --nonet -stringparam rootid "$(ROOT_ID)" \
[32797f8]78 --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
[adf0149]79 stylesheets/blfs-nochunks.xsl $(RENDERTMP)/blfs-html.xml
[35d9770]80
[5d463a51]81 @echo "Running Tidy and obfuscate.sh on non-chunked XHTML..."
[35d9770]82 $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
83 $(Q)sh obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT)
[5d463a51]84 $(Q)sed -i -e "s@text/html@application/xhtml+xml@g" \
[35d9770]85 $(BASEDIR)/$(NOCHUNKS_OUTPUT)
86
[575bba80]87tmpdir: $(RENDERTMP)
88$(RENDERTMP):
89 @echo "Creating $(RENDERTMP)"
[adf0149]90 $(Q)[ -d $(RENDERTMP) ] || mkdir -p $(RENDERTMP)
[575bba80]91
92clean:
93 @echo "Cleaning $(RENDERTMP)"
[b2d6e572]94 $(Q)rm -f $(RENDERTMP)/blfs-{full,html,pdf}.xml
95 $(Q)rm -f $(RENDERTMP)/blfs-pdf.fo
[adf0149]96 $(Q)rm -f $(RENDERTMP)/blfs-{patch-list,patches}
[73fb1e74]97 $(Q)rmdir $(RENDERTMP) 2>/dev/null || :
[8e2f3658]98
[575bba80]99validxml: $(RENDERTMP)/blfs-full.xml
100$(RENDERTMP)/blfs-full.xml: index.xml general.ent
[35d9770]101 @echo "Validating the book..."
[575bba80]102 $(Q)[ -d $(RENDERTMP) ] || mkdir -p $(RENDERTMP)
[35d9770]103 $(Q)xmllint --nonet --noent --xinclude --postvalid \
[2182f2c]104 -o $(RENDERTMP)/blfs-full.xml index.xml
[35d9770]105
[575bba80]106profile-html: $(RENDERTMP)/blfs-html.xml
107$(RENDERTMP)/blfs-html.xml: $(RENDERTMP)/blfs-full.xml
[35d9770]108 @echo "Generating profiled XML for XHTML..."
109 $(Q)xsltproc --nonet --stringparam profile.condition html \
[adf0149]110 --output $(RENDERTMP)/blfs-html.xml stylesheets/lfs-xsl/profile.xsl \
111 $(RENDERTMP)/blfs-full.xml
[35d9770]112
[0238e7e]113blfs-patch-list: blfs-patches.sh
114 @echo "Generating blfs patch list..."
115 $(Q)awk '{if ($$1 == "copy") {sub(/.*\//, "", $$2); print $$2}}' \
116 blfs-patches.sh > blfs-patch-list
117
118blfs-patches.sh: $(RENDERTMP)/blfs-full.xml
119 @echo "Generating blfs patch script..."
120 $(Q)xsltproc --nonet --output blfs-patches.sh \
[adf0149]121 stylesheets/patcheslist.xsl $(RENDERTMP)/blfs-full.xml
[35d9770]122
[575bba80]123wget-list: $(BASEDIR)/wget-list
124$(BASEDIR)/wget-list: $(RENDERTMP)/blfs-full.xml
[35d9770]125 @echo "Generating wget list..."
126 $(Q)mkdir -p $(BASEDIR)
127 $(Q)xsltproc --nonet --output $(BASEDIR)/wget-list \
[adf0149]128 stylesheets/wget-list.xsl $(RENDERTMP)/blfs-full.xml
[35d9770]129
[575bba80]130test-links: $(RENDERTMP)/blfs-full.xml
131$(BASEDIR)/test-links: $(RENDERTMP)/blfs-full.xml
[35d9770]132 @echo "Generating test-links file..."
133 $(Q)mkdir -p $(BASEDIR)
134 $(Q)xsltproc --nonet --stringparam list_mode full \
135 --output $(BASEDIR)/test-links stylesheets/wget-list.xsl \
[adf0149]136 $(RENDERTMP)/blfs-full.xml
[35d9770]137
[cdd254a]138 @echo "Checking URLs, first pass..."
[35d9770]139 $(Q)rm -f $(BASEDIR)/{good,bad,true_bad}_urls
140 $(Q)for URL in `cat $(BASEDIR)/test-links`; do \
[7818e780]141 wget --spider --tries=2 --timeout=60 $$URL >>/dev/null 2>&1; \
142 if test $$? -ne 0 ; then echo $$URL >> $(BASEDIR)/bad_urls ; \
143 else echo $$URL >> $(BASEDIR)/good_urls 2>&1; \
144 fi; \
145 done
[35d9770]146
[cdd254a]147 @echo "Checking URLs, second pass..."
[35d9770]148 $(Q)for URL2 in `cat $(BASEDIR)/bad_urls`; do \
[7818e780]149 wget --spider --tries=2 --timeout=60 $$URL2 >>/dev/null 2>&1; \
150 if test $$? -ne 0 ; then echo $$URL2 >> $(BASEDIR)/true_bad_urls ; \
151 else echo $$URL2 >> $(BASEDIR)/good_urls 2>&1; \
152 fi; \
153 done
154
[575bba80]155dump-commands: $(DUMPDIR)
156$(DUMPDIR): $(RENDERTMP)/blfs-full.xml
[35d9770]157 @echo "Dumping book commands..."
158 $(Q)xsltproc --output $(DUMPDIR)/ \
[adf0149]159 stylesheets/dump-commands.xsl $(RENDERTMP)/blfs-full.xml
[575bba80]160 $(Q)touch $(DUMPDIR)
[35d9770]161
162validate:
163 @echo "Validating the book..."
164 $(Q)xmllint --noout --nonet --xinclude --postvalid index.xml
165
[575bba80]166.PHONY: blfs all world html pdf nochunks tmpdir clean validxml \
167 profile-html wget-list test-links dump-commands validate
Note: See TracBrowser for help on using the repository browser.