=item --enable-mf-dir
-Set then directory mf input is in (idem) [obsolete]
+Set the directory mf input is in (idem) [obsolete]
+
+=item --enable-out-dir
+
+Set the directory for machine generated output.
=back
resulting binaries can be found in the subdirectories F<out/> (which
contain all files generated during compilation).
+=head2 Building for multiple hosts
+
+LilyPond does not follow the GNU standards when it comes to
+configuring and making Makefiles. In LilyPond, F<make> generates I<all>
+output in output directories (called F<out/>, by default).
+You can have multiple compiles from the same source-tree, by
+overriding the setting for the output directory.
+
+Example: on my system, I do debugging and lots compiling. For this I
+use the configuration as follows:
+
+ configure --prefix=~ --enable-debugging --enable-printing --enable-checking
+ make all
+
+and I want to do profiling. For that I use
+
+ configure --prefix=~ --enable-debugging --disable-printing\
+ --disable-checking --enable-profiling --enable-optimise\
+ --enable-out-dir=out-profile
+
+ make OUTDIR_NAME=out-profile all
+
+These two commands build two entirely separate versions of
+LilyPond. In Real Life, you would probably also want to have two
+different prefixes. On my machine this is no problem; I never do
+C<make install>. My prefix dirs are linked back to my source directory.
+
=head1 INSTALLING
The -O2 option to gcc triggers a gcc bug on DEC Alpha in dstream.cc. You
should turn off this flag for this file.
+=item *
+
+Perl5.003 and Perl5.004 use different syntax for pod2html:
+
=back
=head1 EXAMPLE
permissions will not be set correctly, unfortunately)
+=head1 DEBIAN GNU/LINUX
+
+A Debian package is in the works
+
+
=head1 WINDOZE
Windows NT:
=item ftp://pcnov095.win.tue.nl/pub/lilypond
-=item ftp://alpha.gnu.ai.mit.edu/
+=item ftp://alpha.gnu.ai.mit.edu/gnu/
=back
More software for (early) music.
-=item http://www.emry.net/
+=item http://www.emry.net/webwatcher/
-Linux webwatcher.
+The Linux webwatcher.
+
+=item http://www.pbm.com/~lindahl/ravenscroft/modern
+
+Transcriptions of the music of Thomas Ravenscroft, partly using
+LilyPond
=back
/*
- template2.cc -- instantiate some list templates.
+ template2.cc -- Instantiate some list templates.
source file of the GNU LilyPond music typesetter
(c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
*/
-#include "score-column.hh"
+#include "line-spacer.hh"
#include "plist.tcc"
#include "pcursor.tcc"
-IPL_instantiate(Score_column);
+IPL_instantiate(Line_spacer);