Changeset 868b5fc for Makefile


Ignore:
Timestamp:
09/09/2004 06:36:25 PM (20 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
6.0
Children:
7e58f22
Parents:
332ba21
Message:

Added support to can have
different contextual phrases for HTML or PDF output.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4145 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r332ba21 r868b5fc  
    66
    77lfs:
    8         xsltproc --xinclude --nonet -stringparam chunk.quietly $(CHUNK_QUIET) \
     8        xsltproc --xinclude --nonet -stringparam profile.condition html \
     9          --output $(BASEDIR)/lfs-html.xml stylesheets/lfs-profile.xsl index.xml
     10
     11        xsltproc --nonet -stringparam chunk.quietly $(CHUNK_QUIET) \
    912          -stringparam base.dir $(BASEDIR)/ stylesheets/lfs-chunked.xsl \
    10           index.xml
     13          $(BASEDIR)/lfs-html.xml
    1114
    1215        if [ ! -e $(BASEDIR)/stylesheets ]; then \
     
    2427        cd $(BASEDIR)/; sed -i -e "s@../images@images@g" \
    2528          *.html
     29
     30        rm $(BASEDIR)/lfs-html.xml
    2631
    2732        sh goTidy $(BASEDIR)/
     
    4146
    4247pdf:
    43         xsltproc --xinclude --nonet --stringparam profile.condition print \
     48        xsltproc --xinclude --nonet --stringparam profile.condition pdf \
    4449                --output $(BASEDIR)/lfs-pdf.xml stylesheets/lfs-profile.xsl index.xml
    4550        xsltproc --nonet --output $(BASEDIR)/lfs-pdf.fo stylesheets/lfs-pdf.xsl \
Note: See TracChangeset for help on using the changeset viewer.