From 79d9a799c3933f0329556b7c5b3e7e3d39f6beaa Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 20:08:07 +0000 Subject: [PATCH] lilypond-0.1.57 --- Documentation/Rules.make | 12 ++++----- Makefile | 58 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+), 6 deletions(-) create mode 100644 Makefile diff --git a/Documentation/Rules.make b/Documentation/Rules.make index b87154941d..fd0b391a2e 100644 --- a/Documentation/Rules.make +++ b/Documentation/Rules.make @@ -19,7 +19,7 @@ $(outdir)/%.dvi: $(outdir)/%.mudtex mv $(notdir $@) $(outdir) $(outdir)/%.mudtex: %.doc - $(depth)/$(bin)/mudela-book --noindex --outdir=$(outdir)/ --outname=$(notdir $@) $< + $(depth)/bin/out/mudela-book --noindex --outdir=$(outdir)/ --outname=$(notdir $@) $< $(outdir)/%.txt: $(outdir)/%.1 troff -man -Tascii $< | grotty -b -u -o > $@ @@ -27,14 +27,14 @@ $(outdir)/%.txt: $(outdir)/%.1 $(depth)/%.txt: $(outdir)/%.txt cp $< $@ -#do_pod2html=$(POD2HTML) --noindex --infile $< --outfile=$@; sh $(depth)/bin/add-URLs.sh $@ -# do this for perl 5.003 +# perl 5.003/4 -do_pod2html=$(POD2HTML) $< ; mv $(notdir $@) $(outdir)/ +POD2HTML5004=$(POD2HTML) --noindex --infile $< --outfile=$@; sh $(depth)/bin/add-URLs.sh $@ +POD2HTML5003=$(POD2HTML) $< ; mv $(notdir $@) $(outdir)/ -# do this for perl 5.004 -# $ make do_pod2html='$(pod2html) --infile $< --outfile=$@' html + +do_pod2html=$(POD2HTML5003) $(outdir)/%.html: %.pod $(depth)/VERSION diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000..c058487bcb --- /dev/null +++ b/Makefile @@ -0,0 +1,58 @@ +# -*-Makefile-*- +######################################################## +# project LilyPond -- the musical typesetter +# title top level makefile for LilyPond +# file Makefile +# +# Copyright (c) 1997 by +# Jan Nieuwenhuizen +# Han-Wen Nienhuys + +# subdir level: +# +depth = . +# + +# identify module: +# +NAME = lilypond +SUBDIRS = bin flower lib lily mf mi2mu debian\ + Documentation init input tex make mutopia +include VERSION +# + +# descent order into subdirectories: +# + +# list of distribution files: +# +SCRIPTS = configure configure.in aclocal.m4 +README_FILES = BUGS DEDICATION ANNOUNCE-0.1 ANNOUNCE \ + COPYING ONEWS NEWS README TODO \ + INSTALL.txt AUTHORS.txt PATCHES.txt +EXTRA_DISTFILES = config.make.in config.hh.in .dstreamrc mudela-mode.el VERSION $(README_FILES) $(SCRIPTS) + +# do not dist ./Makefile (is copied from make/Toplevel.make) +DISTFILES:=$(EXTRA_DISTFILES) +# + + +# generic targets and rules: +# +include ./$(depth)/make/Version.make +include ./$(depth)/make/Variables.make +include ./$(depth)/make/Targets.make +include ./$(depth)/make/Rules.make + +localdist: configure + +local-distclean: + rm -f config.hh config.make Makefile config.cache config.status config.log + +Makefile: make/Toplevel.make.in + chmod +w $@ + echo '# WARNING WARNING WARNING WARNING' > $@ + echo '# do not edit! this is generated from make/Toplevel.make.in' >> $@ + cat $< >> $@ + chmod -w $@ + -- 2.39.5