From: fred Date: Sun, 24 Mar 2002 19:54:04 +0000 (+0000) Subject: lilypond-0.1.8 X-Git-Tag: release/1.5.59~4101 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=cf1e3b5cca3eefa0ffa6f93a1bf8ffb26a381be3;p=lilypond.git lilypond-0.1.8 --- diff --git a/Documentation/Makefile b/Documentation/Makefile index 1bc695200e..521caa1bb6 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -28,13 +28,18 @@ GROFFFILES = $(OUTPODFILES:.pod=.1) HTMLFILES = $(OUTPODFILES:.pod=.html) DVIFILES = $(addprefix $(outdir)/, $(DOCFILES:.doc=.dvi)) + +default: do-doc # # list of distribution files: # -EXTRA_DISTFILES = lelie_icon.gif lelie_logo.gif $(DOCFILES) -# $(wildcard Vocab*) +XPMS=$(wildcard *.xpm) +giffiles=$(XPMS:.xpm=.gif) -default: do-doc +gifs: $(addprefix $(outdir)/, $(giffiles)) + + +EXTRA_DISTFILES = $(XPMS) $(DOCFILES) $(wildcard Vocab*) # don't do DVI files. They can only be made if lily is installed do-doc: $(TEXTFILES) diff --git a/bin/make-website.in b/bin/make-website.in index e6796215f3..54bfc14151 100644 --- a/bin/make-website.in +++ b/bin/make-website.in @@ -74,8 +74,10 @@ sub my_system local $base="lilypond/"; -local @examples=("twinkle", "multi", "wohltemperirt" ,"standchen", "toccata-fuga-E", - "scsii-menuetto", "collisions", "cadenza", "scales", "twinkle-pop"); + +local @examples=("twinkle-pop", "twinkle", "multi", "wohltemperirt" + ,"standchen", "toccata-fuga-E", "scsii-menuetto", + "cadenza", "scales", "rhythm", "gallina"); # rhythm, scales, @@ -218,8 +220,9 @@ sub copy_files my_system "cp $depth/TODO ./TODO.txt", "cp $depth/ANNOUNCE ./ANNOUNCE.txt", "cp $depth/NEWS ./NEWS.txt", - "cp $depth/DEDICATION ./DEDICATION.txt", - "cp ../lelie*gif ."; + "cp $depth/DEDICATION ./DEDICATION.txt"; + my_system "make -C .. gifs"; + } sub set_images diff --git a/lib/template.cc b/lib/template.cc index 2e3d527baf..4fefc0b563 100644 --- a/lib/template.cc +++ b/lib/template.cc @@ -1,6 +1,16 @@ +/* + template.cc -- instantiate Pointer_list + + source file of the GNU LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + #include "source-file.hh" #include "plist.tcc" #include "pcursor.tcc" +#include "cursor.tcc" +#include "list.tcc" - -IPL_instantiate(Source_file); +template L_INSTANTIATE(void *); +template IPL_INSTANTIATE(Source_file);