]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.8
authorfred <fred>
Sun, 24 Mar 2002 19:54:04 +0000 (19:54 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:54:04 +0000 (19:54 +0000)
Documentation/Makefile
bin/make-website.in
lib/template.cc

index 1bc695200ec13e29df01f7d17fd3c01112ce29e2..521caa1bb63c7d26b71c4a76521b92dfb05f2ba6 100644 (file)
@@ -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)
index e6796215f3b25b4f2518a4718b79a9c671d245f3..54bfc14151617a6e2e0a1194b435c002f7563b71 100644 (file)
@@ -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
index 2e3d527baf25a7bf060bea6596a6c8c5f12f8a09..4fefc0b56373e82f6be40da224544e7d7c131c28 100644 (file)
@@ -1,6 +1,16 @@
+/*
+  template.cc -- instantiate Pointer_list<Source_file*>
+
+  source file of the GNU LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
 #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);