source: Makefile@ 52d1434

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 52d1434 was 0290a023, checked in by Randy McMurchy <randy@…>, 19 years ago

Indexed configuration files and bootscripts in the 'After LFS Configuration Issues' section

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

  • Property mode set to 100644
File size: 3.0 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/
13NOCHUNKS_OUTPUT=BLFS-BOOK.html
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 xsltproc --xinclude --nonet -stringparam profile.condition html \
43 --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
44 stylesheets/blfs-nochunks.xsl index.xml
45
46 tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
47
48 sed -i -e "s@text/html@application/xhtml+xml@g" \
49 $(BASEDIR)/$(NOCHUNKS_OUTPUT)
50
51pdf:
52 xsltproc --xinclude --nonet --output blfs.fo \
53 stylesheets/blfs-pdf.xsl \
54 index.xml
55 sed -i -e "s/inherit/all/" blfs.fo
56 fop.sh blfs.fo blfs.pdf
57 $(INSTALL) -d $(BASEDIR)pdf
58 rm blfs.fo
59 mv blfs.pdf $(BASEDIR)pdf
60
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
65 fop.sh blfs-print.fo blfs-print.pdf
66 $(INSTALL) -d $(BASEDIR)print
67 rm blfs-print.fo
68 mv blfs-print.pdf $(BASEDIR)print
69
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
79# i.e., Changelog
80 xsltproc --nonet --output $(TEXBASEDIR)index.xml \
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 \
85 $(SRCDIR)/stylesheets/blfs-tex.xsl index.xml
86
87validate:
88 xmllint --noout --nonet --xinclude --postvalid index.xml
89
90blfs-patch-list:
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.