|
@@ -19,11 +19,24 @@ lfs:
|
|
|
cd $(BASEDIR)/; sed -i -e "s@../images@images@g" \
|
|
|
index.html part1.html part2.html part3.html longindex.html
|
|
|
|
|
|
+ sh goTidy $(BASEDIR)/
|
|
|
+
|
|
|
pdf:
|
|
|
xsltproc --xinclude --nonet --output lfs.fo stylesheets/lfs-pdf.xsl \
|
|
|
index.xml
|
|
|
sed -i -e "s/inherit/all/" lfs.fo
|
|
|
fop.sh lfs.fo lfs.pdf
|
|
|
|
|
|
+print:
|
|
|
+ xsltproc --xinclude --nonet --output lfs-print.fo \
|
|
|
+ stylesheets/lfs-print.xsl index.xml
|
|
|
+ sed -i -e "s/inherit/all/" lfs-print.fo
|
|
|
+ fop.sh lfs-print.fo lfs-print.pdf
|
|
|
+
|
|
|
+nochunks:
|
|
|
+ xsltproc --xinclude --nonet --output lfs.html \
|
|
|
+ stylesheets/lfs-nochunks.xsl index.xml
|
|
|
+ tidy -config tidy.conf lfs.html || true
|
|
|
+
|
|
|
validate:
|
|
|
xmllint --noout --nonet --xinclude --postvalid index.xml
|