diff options
author | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2006-12-04 04:48:25 +0000 |
---|---|---|
committer | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2006-12-04 04:48:25 +0000 |
commit | 3a4594b22c7ad36dac6687b920decabed2c287ae (patch) | |
tree | f89d2922270ea4636d1d44fd5939389ff3dc163f /Makefile | |
parent | 3d8a36219be2f6e535817ec37da9f16f19ea4da5 (diff) |
Added a stylesheet and Makefile target that will allow the dynamic creation of a wget-list.
Stylesheet is modified from jhalfs-2.0.
This will be useful to our current FTP maintainer in dynamically collecting packages.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7878 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -5,6 +5,7 @@ PDF_OUTPUT=LFS-BOOK.pdf NOCHUNKS_OUTPUT=LFS-BOOK.html XSLROOTDIR=/usr/share/xml/docbook/xsl-stylesheets-1.69.1 + lfs: xsltproc --xinclude --nonet -stringparam profile.condition html \ -stringparam chunk.quietly $(CHUNK_QUIET) -stringparam base.dir $(BASEDIR)/ \ @@ -31,6 +32,11 @@ lfs: sh obfuscate.sh $$filename; \ sed -i -e "s@text/html@application/xhtml+xml@g" $$filename; \ done; + + $(MAKE) wget-list + +wget-list: + xsltproc --xinclude --nonet stylesheets/wget-list.xsl index.xml > $(BASEDIR)/wget-list # Uncomment this for testing and stable versions #pdf: |