Changeset 0869f1e


Ignore:
Timestamp:
08/08/2004 01:57:30 PM (20 years ago)
Author:
Gerard Beekmans <gerard@…>
Branches:
6.0
Children:
3ed279f
Parents:
4066cbe
Message:

Remove temporary files after rendering PDFs, added $(BASEDIR) to the print target so output files can be saved in $(BASEDIR) if wanted, rather than in the XML source dir

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r4066cbe r0869f1e  
    3333        sed -i -e "s/inherit/all/" $(BASEDIR)/lfs.fo
    3434        fop.sh $(BASEDIR)/lfs.fo $(BASEDIR)/$(PDF_OUTPUT)
     35        rm lfs.fo
    3536
    3637print:
    37         xsltproc --xinclude --nonet --stringparam profile.condition print --output lfs-print.xml \
    38           stylesheets/lfs-profile.xsl index-print.xml
    39         xsltproc --nonet --output lfs-print.fo stylesheets/lfs-print.xsl lfs-print.xml
    40         sed -i -e "s/inherit/all/" lfs-print.fo
    41         fop.sh lfs-print.fo $(PRINT_OUTPUT)
     38        xsltproc --xinclude --nonet --stringparam profile.condition print \
     39                --output $(BASEDIR)/lfs-print.xml stylesheets/lfs-profile.xsl index-print.xml
     40        xsltproc --nonet --output $(BASEDIR)/lfs-print.fo stylesheets/lfs-print.xsl \
     41                $(BASEDIR)/lfs-print.xml
     42        sed -i -e "s/inherit/all/" $(BASEDIR)/lfs-print.fo
     43        fop.sh $(BASEDIR)/lfs-print.fo $(BASEDIR)/$(PRINT_OUTPUT)
     44        rm $(BASEDIR)/lfs-print.xml $(BASEDIR)/lfs-print.fo
    4245
    4346nochunks:
Note: See TracChangeset for help on using the changeset viewer.