From 69d59e5226c6d415d93dbeee94cc60c3ceac0fba Mon Sep 17 00:00:00 2001 From: fred <fred> Date: Sun, 24 Mar 2002 20:10:50 +0000 Subject: [PATCH] lilypond-0.1.60 --- Documentation/man/Makefile | 2 ++ Documentation/man/index.pod | 50 +++++++++++++++++++++++++++++++++++++ bin/make-patch.py | 12 +++++---- bin/make-website.py | 1 + lily/VERSION | 9 ++++--- make/Files.make | 2 ++ make/Targets.make | 5 ++++ 7 files changed, 72 insertions(+), 9 deletions(-) create mode 100644 Documentation/man/index.pod diff --git a/Documentation/man/Makefile b/Documentation/man/Makefile index 67d1357ae6..dd1319b14d 100644 --- a/Documentation/man/Makefile +++ b/Documentation/man/Makefile @@ -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 index 0000000000..e633352326 --- /dev/null +++ b/Documentation/man/index.pod @@ -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 diff --git a/bin/make-patch.py b/bin/make-patch.py index 69e14b0cc2..d6c8502d9e 100644 --- a/bin/make-patch.py +++ b/bin/make-patch.py @@ -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) diff --git a/bin/make-website.py b/bin/make-website.py index ccff8df603..ac6d865af6 100644 --- a/bin/make-website.py +++ b/bin/make-website.py @@ -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; diff --git a/lily/VERSION b/lily/VERSION index bd76086098..e825e8955d 100644 --- a/lily/VERSION +++ b/lily/VERSION @@ -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= + diff --git a/make/Files.make b/make/Files.make index 87baac4272..31cdf0e205 100644 --- a/make/Files.make +++ b/make/Files.make @@ -21,6 +21,8 @@ EXTRA_SOURCE_FILES = $(wildcard *.yy *.ll) # PODFILES = $(wildcard *.pod) +OUTPODFILES = $(addprefix $(outdir)/,$(PODFILES)) + CCFILES = $(wildcard *.cc) MAKEFILES = $(wildcard *.make) diff --git a/make/Targets.make b/make/Targets.make index c696163f14..37135f0f46 100644 --- a/make/Targets.make +++ b/make/Targets.make @@ -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),) -- 2.39.5