]> git.donarmstrong.com Git - lilypond.git/commitdiff
patch::: 1.3.104.jcn3
authorJan Nieuwenhuizen <janneke@gnu.org>
Wed, 8 Nov 2000 20:14:17 +0000 (21:14 +0100)
committerJan Nieuwenhuizen <janneke@gnu.org>
Wed, 8 Nov 2000 20:14:17 +0000 (21:14 +0100)
1.3.104.jcn3
============

* Bit of temporary makefile hacking to stay in sync with makeinfo patch.

CHANGES
Documentation/user/GNUmakefile
VERSION
buildscripts/install-info-html.sh [new file with mode: 0644]

diff --git a/CHANGES b/CHANGES
index e183985b1fec9320ac1b615d93341450982ad670..80429e41fda8236e2b8dc59fcdc3de9c53d8f5ca 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+1.3.104.jcn3
+============
+
+* Bit of temporary makefile hacking to stay in sync with makeinfo patch.
+
 1.3.104.jcn2
 ============
 
index 544b7f6e5771724f8ab5a09c57bce50475a8bb45..83c498529284524a3c51e7d18d2ddd92b780a153 100644 (file)
@@ -34,7 +34,14 @@ info: $(INFO_FILES)
 default: info
 
 local-WWW: $(HTML_FILES)   $(datafiles) $(PS_GZ_FILES) backdoc-WWW
-       true
+       $(SHELL) $(buildscript-dir)/install-info-html.sh $(outdir) lilypond lilypond-internals
+       $(MAKE) footify
+       ln -f $(outdir)/*.png $(outdir)/lilypond
+       $(MAKE) deep-footify
+
+deep-footify:
+       $(PYTHON) $(step-bindir)/add-html-footer.py --index=../../$(depth)/ --name $(PACKAGE_NAME) --version $(TOPLEVEL_VERSION) --header=$(depth)/Documentation/header.html.in --footer $(depth)/Documentation/footer.html.in $(sort $(wildcard $(outdir)/*/*.html))
+
 
 #      $(PYTHON) $(step-bindir)/ls-latex.py --title 'User documentation' \
 #         $(DOC_FILES) $(TEX_FILES) $(TELY_FILES) \
diff --git a/VERSION b/VERSION
index 60051929eadbb0aae1c75abd19f5de758ef5b173..f376e6be7483be97cd1394d0cfbf15d2989a1563 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond
 MAJOR_VERSION=1
 MINOR_VERSION=3
 PATCH_LEVEL=104
-MY_PATCH_LEVEL=jcn2
+MY_PATCH_LEVEL=jcn3
 
 # use the above to send patches: MY_PATCH_LEVEL is always empty for a
 # released version.
diff --git a/buildscripts/install-info-html.sh b/buildscripts/install-info-html.sh
new file mode 100644 (file)
index 0000000..ba86329
--- /dev/null
@@ -0,0 +1,27 @@
+#!@BASH@
+
+dir=$1
+index=$dir/index.html
+shift
+
+rm -f $index
+cat > $index <<EOF
+<html> 
+<body>
+You want to be <a href=$1/$1.html>here</a>
+<p>
+<ul>
+EOF
+
+for i in $*; do
+cat >> $index <<EOF
+<li> <a href=$i/$i.html>$i</a>
+EOF
+done
+
+cat >> $index <<EOF
+</ul>
+</body>
+</html>
+EOF
+