Changeset c41b38f for Makefile


Ignore:
Timestamp:
08/07/2014 09:17:28 AM (10 years ago)
Author:
Igor Živković <igor@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, 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, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
6d3005f
Parents:
3d8851e
Message:

Update to qemu-2.1.0.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r3d8851e rc41b38f  
    22# By Tushar Teredesai <tushar@linuxfromscratch.org>
    33# 2004-01-31
    4 # $LastChangedBy$
    5 # $Date$
    64
    75# Adjust these to suit your installation
    86BASEDIR ?= $(HOME)/public_html/blfs-book-xsl
    97DUMPDIR ?= $(HOME)/blfs-commands
    10 RENDERTMP ?= tmp
     8RENDERTMP ?= /tmp
    119CHUNK_QUIET = 1
    1210ROOT_ID =
    13 #PDF_OUTPUT = BLFS-BOOK.pdf
    1411NOCHUNKS_OUTPUT = BLFS-BOOK.html
    15 SHELL = /bin/bash
     12SHELL = /bin/sh
    1613
    1714ALLXML := $(filter-out $(RENDERTMP)/%, \
     
    2724
    2825blfs: html wget-list
    29 #all: blfs nochunks pdf
    3026all: blfs nochunks
    3127world: all blfs-patch-list dump-commands test-links
     
    5450          tidy -config tidy.conf $$filename; \
    5551          true; \
    56           bash obfuscate.sh $$filename; \
     52          sh obfuscate.sh $$filename; \
    5753          sed -i -e "s@text/html@application/xhtml+xml@g" $$filename; \
    5854        done;
    59 
    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 \
    64           --output $(RENDERTMP)/blfs-pdf.xml stylesheets/lfs-xsl/profile.xsl \
    65           $(RENDERTMP)/blfs-full.xml
    66 
    67 #$(RENDERTMP)/blfs-pdf.fo: $(RENDERTMP)/blfs-pdf.xml
    68 #       @echo "Generating FO file..."
    69 #       $(Q)xsltproc --nonet -stringparam rootid "$(ROOT_ID)" \
    70           --output $(RENDERTMP)/blfs-pdf.fo stylesheets/blfs-pdf.xsl \
    71           $(RENDERTMP)/blfs-pdf.xml
    72 #       $(Q)sed -i -e 's/span="inherit"/span="all"/' $(RENDERTMP)/blfs-pdf.fo
    73 
    74 #$(BASEDIR)/$(PDF_OUTPUT): $(RENDERTMP)/blfs-pdf.fo
    75 #       @echo "Generating PDF file..."
    76 #       $(Q)if [ ! -e $(BASEDIR) ]; then \
    77           mkdir -p $(BASEDIR); \
    78         fi;
    79 #       $(Q)fop $(RENDERTMP)/blfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT)
    8055
    8156nochunks: $(BASEDIR)/$(NOCHUNKS_OUTPUT)
     
    10075        @echo "Cleaning $(RENDERTMP)"
    10176        $(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
    10477        $(Q)rm -f $(RENDERTMP)/blfs-{patch-list,patches}
    10578        $(Q)rmdir $(RENDERTMP) 2>/dev/null || :
     
    161134        done
    162135
    163 bootscripts:
    164         @VERSION=`grep "bootscripts-version " general.ent | cut -d\" -f2`; \
    165    BOOTSCRIPTS="blfs-bootscripts-$$VERSION"; \
    166    if [ ! -e $$BOOTSCRIPTS.tar.xz ]; then \
    167      rm -rf $(RENDERTMP)/$$BOOTSCRIPTS; \
    168      mkdir $(RENDERTMP)/$$BOOTSCRIPTS; \
    169      cp -a ../bootscripts/* $(RENDERTMP)/$$BOOTSCRIPTS; \
    170      rm -rf ../bootscripts/archive; \
    171      tar  -cJhf $$BOOTSCRIPTS.tar.xz -C $(RENDERTMP) $$BOOTSCRIPTS; \
    172    fi
    173 
    174136dump-commands: $(DUMPDIR)
    175137$(DUMPDIR): $(RENDERTMP)/blfs-full.xml
     
    184146
    185147.PHONY: blfs all world html nochunks tmpdir clean validxml \
    186         profile-html wget-list test-links dump-commands validate \
    187    bootscripts
    188 
    189 #.PHONY: blfs all world html pdf nochunks tmpdir clean validxml \
    190148        profile-html wget-list test-links dump-commands validate
Note: See TracChangeset for help on using the changeset viewer.