source: Makefile@ 3fe8b511

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 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 3fe8b511 was 3fe8b511, checked in by Bruce Dubbs <bdubbs@…>, 19 years ago

Update stylesheets and fix Python references

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

  • Property mode set to 100644
File size: 2.6 KB
Line 
1# Makefile for BLFS Book generation.
2# By Tushar Teredesai <tushar@linuxfromscratch.org>
3# 2004-01-31
4# $LastChangedBy$
5# $Date$
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
11BASEDIR= $(HOME)/public_html/blfs-book-xsl/
12TEXBASEDIR= $(HOME)/public_html/blfs-book-tex/
13
14SRCDIR = $(PWD)
15
16all: blfs
17
18blfs:
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)
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;
31 cp stylesheets/*.css $(BASEDIR)stylesheets
32 if [ ! -e $(BASEDIR)images ]; then \
33 mkdir -p $(BASEDIR)images; \
34 fi;
35 cp images/*.png $(BASEDIR)/images
36 cd $(BASEDIR); sed -i -e "s@../stylesheets@stylesheets@g" *.html
37 cd $(BASEDIR); sed -i -e "s@../images@images@g" *.html
38 sh goTidy $(BASEDIR)/
39
40nochunks:
41 @echo "Generating nochunks version of BLFS..."
42
43
44pdf:
45 xsltproc --xinclude --nonet --output blfs.fo \
46 stylesheets/blfs-pdf.xsl \
47 index.xml
48 sed -i -e "s/inherit/all/" blfs.fo
49 /opt/fop/fop.sh blfs.fo blfs.pdf
50 $(INSTALL) -d $(BASEDIR)pdf
51 rm blfs.fo
52 mv blfs.pdf $(BASEDIR)pdf
53
54print:
55 xsltproc --xinclude --nonet --output blfs-print.fo \
56 stylesheets/blfs-print.xsl index.xml
57 sed -i -e "s/inherit/all/" blfs-print.fo
58 /opt/fop/fop.sh blfs-print.fo blfs-print.pdf
59 $(INSTALL) -d $(BASEDIR)print
60 rm blfs-print.fo
61 mv blfs-print.pdf $(BASEDIR)print
62
63tex:
64 @if [ -z $(TEXBASEDIR) ]; then \
65 echo "Envar TEXBASEDIR is not set!" ; \
66 exit 1 ; \
67 fi
68 @echo "Generating TeX Version of BLFS Book with xsltproc..."
69 @echo " TEXBASEDIR = $(TEXBASEDIR)"
70 @$(INSTALL) -d $(TEXBASEDIR)
71# Using profiles in book source to exclude parts of the book from TeX
72# i.e., Changelog
73 xsltproc --nonet --output $(TEXBASEDIR)index.xml \
74 --stringparam "profile.role" "book" \
75 http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl \
76 index.xml
77 @cd $(TEXBASEDIR) && xsltproc --nonet -o blfs-book.tex \
78 $(SRCDIR)/stylesheets/blfs-tex.xsl index.xml
79
80validate:
81 xmllint --noout --nonet --xinclude --postvalid index.xml
82
83blfs-patch-list:
84 @echo "Generating blfs-patch-list..."
85 xsltproc --xinclude --nonet \
86 --output blfs-patch-list stylesheets/patcheslist.xsl index.xml
87 sed -e "s|^.*/||" blfs-patch-list > blfs-patches
88 sort blfs-patches > blfs-patch-list
89 rm blfs-patches
90
91.PHONY : blfs-patch-list
Note: See TracBrowser for help on using the repository browser.