Changeset 527966e
- Timestamp:
- 04/04/2006 04:11:49 PM (17 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 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, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 69fdc01
- Parents:
- 37c1117
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r37c1117 r527966e 10 10 JADE = openjade 11 11 DOCBOOK = /usr/share/sgml/docbook/dsssl-stylesheets-1.78 12 BASEDIR= $(HOME)/public_html/blfs-book-xsl /13 TEXBASEDIR= $(HOME)/public_html/blfs-book-tex /12 BASEDIR= $(HOME)/public_html/blfs-book-xsl 13 TEXBASEDIR= $(HOME)/public_html/blfs-book-tex 14 14 NOCHUNKS_OUTPUT=BLFS-BOOK.html 15 15 SRCDIR = $(PWD) … … 25 25 @echo " BASEDIR = $(BASEDIR)" 26 26 @$(INSTALL) -d $(BASEDIR) 27 xsltproc --xinclude --nonet -stringparam base.dir $(BASEDIR) \27 xsltproc --xinclude --nonet -stringparam base.dir $(BASEDIR)/ \ 28 28 stylesheets/blfs-chunked.xsl index.xml 29 if [ ! -e $(BASEDIR) stylesheets ]; then \30 mkdir -p $(BASEDIR) stylesheets; \29 if [ ! -e $(BASEDIR)/stylesheets ]; then \ 30 mkdir -p $(BASEDIR)/stylesheets; \ 31 31 fi; 32 cp stylesheets/*.css $(BASEDIR) stylesheets33 if [ ! -e $(BASEDIR) images ]; then \34 mkdir -p $(BASEDIR) images; \32 cp stylesheets/*.css $(BASEDIR)/stylesheets 33 if [ ! -e $(BASEDIR)/images ]; then \ 34 mkdir -p $(BASEDIR)/images; \ 35 35 fi; 36 36 cp images/*.png $(BASEDIR)/images … … 65 65 sed -i -e "s/inherit/all/" blfs.fo 66 66 fop.sh blfs.fo blfs.pdf 67 $(INSTALL) -d $(BASEDIR) pdf67 $(INSTALL) -d $(BASEDIR)/pdf 68 68 rm blfs.fo 69 mv blfs.pdf $(BASEDIR) pdf69 mv blfs.pdf $(BASEDIR)/pdf 70 70 71 71 tex: … … 79 79 # Using profiles in book source to exclude parts of the book from TeX 80 80 # i.e., Changelog 81 xsltproc --nonet --output $(TEXBASEDIR) index.xml \81 xsltproc --nonet --output $(TEXBASEDIR)/index.xml \ 82 82 --stringparam "profile.role" "book" \ 83 83 http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl \
Note:
See TracChangeset
for help on using the changeset viewer.