Changeset f5ee8c2 for Makefile


Ignore:
Timestamp:
08/22/2012 04:33:50 PM (12 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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
Children:
c0cfef7b
Parents:
ca1500d
Message:

Commented the PDF generation from the Makefile

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    rca1500d rf5ee8c2  
    1111CHUNK_QUIET = 1
    1212ROOT_ID =
    13 PDF_OUTPUT = BLFS-BOOK.pdf
     13#PDF_OUTPUT = BLFS-BOOK.pdf
    1414NOCHUNKS_OUTPUT = BLFS-BOOK.html
    1515SHELL = /bin/bash
     
    2727
    2828blfs: html wget-list
    29 all: blfs nochunks pdf
     29#all: blfs nochunks pdf
     30all: blfs nochunks
    3031world: all blfs-patch-list dump-commands test-links
    3132
     
    5758        done;
    5859
    59 pdf: $(BASEDIR)/$(PDF_OUTPUT)
    60 $(RENDERTMP)/blfs-pdf.xml: $(RENDERTMP)/blfs-full.xml
    61         @echo "Generating profiled XML for PDF..."
    62         $(Q)xsltproc --nonet --stringparam profile.condition pdf \
     60#pdf: $(BASEDIR)/$(PDF_OUTPUT)
     61#$(RENDERTMP)/blfs-pdf.xml: $(RENDERTMP)/blfs-full.xml
     62#       @echo "Generating profiled XML for PDF..."
     63#       $(Q)xsltproc --nonet --stringparam profile.condition pdf \
    6364          --output $(RENDERTMP)/blfs-pdf.xml stylesheets/lfs-xsl/profile.xsl \
    6465          $(RENDERTMP)/blfs-full.xml
    6566
    66 $(RENDERTMP)/blfs-pdf.fo: $(RENDERTMP)/blfs-pdf.xml
    67         @echo "Generating FO file..."
    68         $(Q)xsltproc --nonet -stringparam rootid "$(ROOT_ID)" \
     67#$(RENDERTMP)/blfs-pdf.fo: $(RENDERTMP)/blfs-pdf.xml
     68#       @echo "Generating FO file..."
     69#       $(Q)xsltproc --nonet -stringparam rootid "$(ROOT_ID)" \
    6970          --output $(RENDERTMP)/blfs-pdf.fo stylesheets/blfs-pdf.xsl \
    7071          $(RENDERTMP)/blfs-pdf.xml
    71         $(Q)sed -i -e 's/span="inherit"/span="all"/' $(RENDERTMP)/blfs-pdf.fo
     72#       $(Q)sed -i -e 's/span="inherit"/span="all"/' $(RENDERTMP)/blfs-pdf.fo
    7273
    73 $(BASEDIR)/$(PDF_OUTPUT): $(RENDERTMP)/blfs-pdf.fo
    74         @echo "Generating PDF file..."
    75         $(Q)if [ ! -e $(BASEDIR) ]; then \
     74#$(BASEDIR)/$(PDF_OUTPUT): $(RENDERTMP)/blfs-pdf.fo
     75#       @echo "Generating PDF file..."
     76#       $(Q)if [ ! -e $(BASEDIR) ]; then \
    7677          mkdir -p $(BASEDIR); \
    7778        fi;
    78         $(Q)fop $(RENDERTMP)/blfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT)
     79#       $(Q)fop $(RENDERTMP)/blfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT)
    7980
    8081nochunks: $(BASEDIR)/$(NOCHUNKS_OUTPUT)
     
    9899clean:
    99100        @echo "Cleaning $(RENDERTMP)"
    100         $(Q)rm -f $(RENDERTMP)/blfs-{full,html,pdf}.xml
    101         $(Q)rm -f $(RENDERTMP)/blfs-pdf.fo
     101        $(Q)rm -f $(RENDERTMP)/blfs-{full,html}.xml
     102#       $(Q)rm -f $(RENDERTMP)/blfs-{full,html,pdf}.xml
     103#       $(Q)rm -f $(RENDERTMP)/blfs-pdf.fo
    102104        $(Q)rm -f $(RENDERTMP)/blfs-{patch-list,patches}
    103105        $(Q)rmdir $(RENDERTMP) 2>/dev/null || :
     
    170172        $(Q)xmllint --noout --nonet --xinclude --postvalid index.xml
    171173
    172 .PHONY: blfs all world html pdf nochunks tmpdir clean validxml \
     174.PHONY: blfs all world html nochunks tmpdir clean validxml \
    173175        profile-html wget-list test-links dump-commands validate
     176
     177#.PHONY: blfs all world html pdf nochunks tmpdir clean validxml \
     178        profile-html wget-list test-links dump-commands validate
Note: See TracChangeset for help on using the changeset viewer.