source: Makefile@ 4ff86b9

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 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 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/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 4ff86b9 was 4ff86b9, checked in by Randy McMurchy <randy@…>, 19 years ago

Removed spaces from blank lines and excess spaces from the end of XML data

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

  • Property mode set to 100644
File size: 3.0 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$
[19599c63]6# Adjust these to suit your installation
7OUTPUTDIR = $(HOME)/public_html/blfs-book
8INSTALL = install
9JADE = openjade
10DOCBOOK = /usr/share/sgml/docbook/dsssl-stylesheets-1.78
[e9e9b47]11BASEDIR= $(HOME)/public_html/blfs-book-xsl/
[9c12e42]12TEXBASEDIR= $(HOME)/public_html/blfs-book-tex/
[d8dc77a]13NOCHUNKS_OUTPUT=BLFS-BOOK.html
[19599c63]14SRCDIR = $(PWD)
15
[972150e7]16all: blfs
[22c4e1ee]17
[eff3826]18blfs:
[e9e9b47]19 @if [ -z $(BASEDIR) ]; then \
20 echo "Envar BASEDIR is not set!" ; \
21 exit 1 ; \
22 fi
23 @echo "Generating XHTML Version of BLFS Book with xsltproc..."
24 @echo " BASEDIR = $(BASEDIR)"
25 @$(INSTALL) -d $(BASEDIR)
[eff3826]26 xsltproc --xinclude --nonet -stringparam base.dir $(BASEDIR) \
27 stylesheets/blfs-chunked.xsl index.xml
28 if [ ! -e $(BASEDIR)stylesheets ]; then \
29 mkdir -p $(BASEDIR)stylesheets; \
30 fi;
[3984104]31 cp stylesheets/*.css $(BASEDIR)stylesheets
[eff3826]32 if [ ! -e $(BASEDIR)images ]; then \
33 mkdir -p $(BASEDIR)images; \
34 fi;
[5d4975d]35 cp images/*.png $(BASEDIR)/images
[3fe8b511]36 cd $(BASEDIR); sed -i -e "s@../stylesheets@stylesheets@g" *.html
37 cd $(BASEDIR); sed -i -e "s@../images@images@g" *.html
[4ff86b9]38 sh goTidy $(BASEDIR)/
[eff3826]39
[3fe8b511]40nochunks:
41 @echo "Generating nochunks version of BLFS..."
[d8dc77a]42 xsltproc --xinclude --nonet -stringparam profile.condition html \
43 --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
44 stylesheets/blfs-nochunks.xsl index.xml
[4ff86b9]45
[d8dc77a]46 tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
[4ff86b9]47
[d8dc77a]48 sed -i -e "s@text/html@application/xhtml+xml@g" \
49 $(BASEDIR)/$(NOCHUNKS_OUTPUT)
[3fe8b511]50
[eff3826]51pdf:
[d9712fb]52 xsltproc --xinclude --nonet --output blfs.fo \
[eff3826]53 stylesheets/blfs-pdf.xsl \
54 index.xml
[5d4975d]55 sed -i -e "s/inherit/all/" blfs.fo
[634c636c]56 fop.sh blfs.fo blfs.pdf
[9c12e42]57 $(INSTALL) -d $(BASEDIR)pdf
58 rm blfs.fo
59 mv blfs.pdf $(BASEDIR)pdf
[e9e9b47]60
[5d4975d]61print:
62 xsltproc --xinclude --nonet --output blfs-print.fo \
63 stylesheets/blfs-print.xsl index.xml
64 sed -i -e "s/inherit/all/" blfs-print.fo
[0290a023]65 fop.sh blfs-print.fo blfs-print.pdf
[9c12e42]66 $(INSTALL) -d $(BASEDIR)print
67 rm blfs-print.fo
68 mv blfs-print.pdf $(BASEDIR)print
[5d4975d]69
[e9e9b47]70tex:
71 @if [ -z $(TEXBASEDIR) ]; then \
72 echo "Envar TEXBASEDIR is not set!" ; \
73 exit 1 ; \
74 fi
75 @echo "Generating TeX Version of BLFS Book with xsltproc..."
76 @echo " TEXBASEDIR = $(TEXBASEDIR)"
77 @$(INSTALL) -d $(TEXBASEDIR)
78# Using profiles in book source to exclude parts of the book from TeX
[0990cf7a]79# i.e., Changelog
[9c12e42]80 xsltproc --nonet --output $(TEXBASEDIR)index.xml \
[e9e9b47]81 --stringparam "profile.role" "book" \
82 http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl \
83 index.xml
84 @cd $(TEXBASEDIR) && xsltproc --nonet -o blfs-book.tex \
[9c12e42]85 $(SRCDIR)/stylesheets/blfs-tex.xsl index.xml
[22c4e1ee]86
[7337fcb]87validate:
[714d067]88 xmllint --noout --nonet --xinclude --postvalid index.xml
[47d87939]89
[4ff86b9]90blfs-patch-list:
[47d87939]91 @echo "Generating blfs-patch-list..."
92 xsltproc --xinclude --nonet \
93 --output blfs-patch-list stylesheets/patcheslist.xsl index.xml
94 sed -e "s|^.*/||" blfs-patch-list > blfs-patches
95 sort blfs-patches > blfs-patch-list
96 rm blfs-patches
97
98.PHONY : blfs-patch-list
Note: See TracBrowser for help on using the repository browser.