mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-31 11:21:59 +00:00
Reverted a bad change in the Makefile
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3927 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
21a9894598
commit
44758be312
57
Makefile
57
Makefile
@ -1,45 +1,48 @@
|
||||
BASEDIR=/home/macana/LFS/test-book-LFS/
|
||||
BASEDIR=~/lfs-book
|
||||
CHUNK_QUIET=0
|
||||
PDF_OUTPUT=LFS-BOOK.pdf
|
||||
PRINT_OUTPUT=LFS-BOOK-PRINTABLE.pdf
|
||||
NOCHUNKS_OUTPUT=LFS-BOOK.html
|
||||
XSLROOTDIR=/usr/share/xml/docbook/xsl-stylesheets-current
|
||||
|
||||
lfs:
|
||||
xsltproc --xinclude --nonet -stringparam base.dir $(BASEDIR) \
|
||||
stylesheets/lfs-chunked.xsl index.xml
|
||||
xsltproc --xinclude --nonet -stringparam chunk.quietly $(CHUNK_QUIET) \
|
||||
-stringparam base.dir $(BASEDIR)/ stylesheets/lfs-chunked.xsl \
|
||||
index.xml
|
||||
|
||||
mkdir -p $(BASEDIR)stylesheets && \
|
||||
cp stylesheets/*.css $(BASEDIR)stylesheets
|
||||
if [ ! -e $(BASEDIR)/stylesheets ]; then \
|
||||
mkdir -p $(BASEDIR)/stylesheets; \
|
||||
fi;
|
||||
cp stylesheets/*.css $(BASEDIR)/stylesheets
|
||||
|
||||
mkdir -p $(BASEDIR)images && \
|
||||
cp /usr/share/xml/docbook/xsl-stylesheets-1.65.1/images/*.png \
|
||||
$(BASEDIR)images
|
||||
|
||||
cd $(BASEDIR); sed -i -e "s@../stylesheets@stylesheets@g" \
|
||||
if [ ! -e $(BASEDIR)/images ]; then \
|
||||
mkdir -p $(BASEDIR)/images; \
|
||||
fi;
|
||||
cp $(XSLROOTDIR)/images/*.png \
|
||||
$(BASEDIR)/images
|
||||
cd $(BASEDIR)/; sed -i -e "s@../stylesheets@stylesheets@g" \
|
||||
index.html part1.html part2.html part3.html longindex.html
|
||||
cd $(BASEDIR); sed -i -e "s@../images@images@g" \
|
||||
cd $(BASEDIR)/; sed -i -e "s@../images@images@g" \
|
||||
index.html part1.html part2.html part3.html longindex.html
|
||||
|
||||
goTidy
|
||||
sh goTidy $(BASEDIR)/
|
||||
|
||||
pdf:
|
||||
xsltproc --xinclude --nonet --output $(BASEDIR)lfs.fo stylesheets/lfs-pdf.xsl \
|
||||
xsltproc --xinclude --nonet --output lfs.fo stylesheets/lfs-pdf.xsl \
|
||||
index.xml
|
||||
cd $(BASEDIR)
|
||||
sed -i -e "s@inherit@all@" lfs.fo
|
||||
JAVA_HOME=/opt/java/jre1.3.1_02 FOP_HOME=/home/macana/tmp/fop \
|
||||
/home/macana/tmp/fop/fop.sh lfs.fo lfs.pdf
|
||||
sed -i -e "s/inherit/all/" lfs.fo
|
||||
fop.sh lfs.fo $(PDF_OUTPUT)
|
||||
|
||||
print:
|
||||
xsltproc --xinclude --nonet --output $(BASEDIR)lfs-print.fo stylesheets/lfs-print.xsl \
|
||||
index.xml
|
||||
cd $(BASEDIR)
|
||||
sed -i -e "s@inherit@all@" lfs-print.fo
|
||||
JAVA_HOME=/opt/java/jre1.3.1_02 FOP_HOME=/home/macana/tmp/fop \
|
||||
/home/macana/tmp/fop/fop.sh lfs-print.fo lfs-print.pdf
|
||||
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 $(PRINT_OUTPUT)
|
||||
|
||||
nochunks:
|
||||
xsltproc --xinclude --nonet --output $(BASEDIR)lfs-nochunk.html \
|
||||
xsltproc --xinclude --nonet --output $(NOCHUNKS_OUTPUT) \
|
||||
stylesheets/lfs-nochunks.xsl index.xml
|
||||
tidy -config tidy.conf $(BASEDIR)lfs-nochunk.html || true
|
||||
tidy -config tidy.conf $(NOCHUNKS_OUTPUT) || true
|
||||
|
||||
validate:
|
||||
xmllint --noout --nonet --xinclude --postvalid index.xml
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user