]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.60
authorfred <fred>
Sun, 24 Mar 2002 20:10:50 +0000 (20:10 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:10:50 +0000 (20:10 +0000)
Documentation/man/Makefile
Documentation/man/index.pod [new file with mode: 0644]
bin/make-patch.py
bin/make-website.py
lily/VERSION
make/Files.make
make/Targets.make

index 67d1357ae617eab4d5c041634086952dd5f57537..dd1319b14d7a78687e0aa35699d88e3ae6924006 100644 (file)
@@ -13,3 +13,5 @@ INSTALLATION_OUT_FILES=$(MANGROFF)
 INSTALLATION_DIR=$(mandir)/man$(SECTION)
 
 include $(depth)/make/Install_outfiles.make
+
+WWW: $(OUTPODFILES:.pod=.html)
diff --git a/Documentation/man/index.pod b/Documentation/man/index.pod
new file mode 100644 (file)
index 0000000..e633352
--- /dev/null
@@ -0,0 +1,50 @@
+=head1 NAME
+
+The Manuals of LilyPond -- the GNU Project music typesetter
+
+=head1 DESCRIPTION
+
+These are the manpages that document LilyPond.
+
+
+=head2 Documentation: manpages, manuals
+
+
+=over 4
+
+=item *
+<a href=mi2mu.html
+>
+manual page for mi2mu, the MIDI convertor.
+</a
+>
+
+=item *
+<a href=lilypond.html
+>
+The manual page
+</a
+>
+
+=item *
+<a href=ly2dvi.html
+>
+Easy titling for LilyPond
+</a
+>
+
+=item *
+<a href=convert-mudela.html
+>
+The mudela convertor: convert-mudela
+</a
+>
+
+=item *
+<a href=mudela-book.html
+>
+mudela in TeX: mudela-book
+</a
+>
+
+=back
index 69e14b0cc22e57a7b1855390cb39dc4dff7f0252..d6c8502d9e06036f29dafc10278918d86f2ae310 100644 (file)
@@ -53,7 +53,7 @@ usage \n\
        cd lilypond-source-dir; patch -E -p1 < %s\n\
 \n\
 Patches do not contain automatically generated files, \n\
-i.e. you should rerun configure\n\n'
+i.e. you should rerun autoconf and configure\n\n'
 
 # ugh, how to get rid of .tex files generated by lily?
 pats = ['*.lsm', 'configure', '*.txt', 'lilypond.spec']
@@ -144,8 +144,9 @@ def main():
        sys.stderr.write('copying ' + srcdir + ' to ' + diffdir + '\n')
        # os.system('cp -pr %s %s' % (srcdir, diffdir))
        os.system('mkdir -p %s '% (diffdir))
-       os.system('tar cf - --exclude out %s | tar -xf - -C %s' 
-         % (srcdir, '/tmp/make-patch'))
+       os.chdir (srcdir)
+       os.system('tar cf - --exclude out . | tar -xf - -C %s' 
+         % diffdir)
 
     if to_b != 0:
        os.chdir ('/tmp/make-patch')
@@ -156,8 +157,9 @@ def main():
        sys.stderr.write('copying ' + srcdir + ' to ' + diffdir + '\n')
        os.system('mkdir -p %s '% (diffdir))
        # os.system('cp -pr %s %s'  (srcdir, diffdir))%
-       os.system('tar -cf - --exclude out %s | tar -xf - -C %s '
-         % (srcdir, '/tmp/make-patch'))
+       os.chdir (srcdir)
+       os.system('tar -cf - --exclude out . | tar -xf - -C %s '
+         % diffdir)
 
     os.chdir('/tmp/make-patch')
     os.chdir(todir)
index ccff8df603a5371a6e9cd75341cd59252e4514ed..ac6d865af606e7f1d965fd29112074653488cb48 100644 (file)
@@ -55,6 +55,7 @@ include_path=[ 'input', 'mutopia' , 'mutopia/J.S.Bach', 'mutopia/Coriolan',
 def set_vars():
     __main__.lilyversion =  version_tuple_to_str(lilydirs.version_tuple())
     os.environ["TEXINPUTS"] = os.environ["TEXINPUTS"] + ":%s/input/:" % depth;
+    os.environ["CONFIGSUFFIX"] = 'www';
     
     os.environ["LILYINCLUDE"] = join (':', __main__.include_path) +':'+ os.environ["LILYINCLUDE"];
     os.environ["LILYTOP"] = depth;
index bd760860982a6dfb3a97da63a735f3763c460cf5..e825e8955d8089333e335493caecdfc1a58349cf 100644 (file)
@@ -1,4 +1,5 @@
-MAJOR_VERSION = 0
-MINOR_VERSION = 1
-PATCH_LEVEL = 58
-MY_PATCH_LEVEL =
+MAJOR_VERSION=0
+MINOR_VERSION=1
+PATCH_LEVEL=60
+MY_PATCH_LEVEL=
+
index 87baac4272df22d93b1c5adb70096aef32fa6380..31cdf0e205f2bf2a88b228447708208cc3da3d28 100644 (file)
@@ -21,6 +21,8 @@ EXTRA_SOURCE_FILES = $(wildcard *.yy *.ll)
 
 #
 PODFILES = $(wildcard *.pod)
+OUTPODFILES = $(addprefix $(outdir)/,$(PODFILES))
+
 
 CCFILES = $(wildcard *.cc)
 MAKEFILES = $(wildcard *.make)
index c696163f145b32bc013165fc5e166dc9e47fc1c0..37135f0f460c426923f97636b94fef08e89813cf 100644 (file)
@@ -33,6 +33,7 @@ exe: $(EXECUTABLE)
 #
 $(LIBRARY): $(configheader) $(OFILES)
        $(AR_COMMAND) $(OFILES)
+       $(AR) ts $@             #silly irix
        $(RANLIB_COMMAND)
 
 $(SHAREDLIBRARY):  $(configheader) $(OFILES) $(MODULE_LIBDEPS)
@@ -230,6 +231,10 @@ check-mf-deps:
 $(configheader): $(depth)/$(configuration).hh
        cp $< $@
 
+WWW: local-WWW
+       $(LOOP)
+
+local-WWW:
 
 
 ifneq ($(DEPFILES),)