From c26defc1e5202de26ffd6594700d6755f395e235 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 22 Dec 1996 20:20:09 +0000 Subject: [PATCH] lilypond-0.0.20 --- Documentation/Makefile | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/Documentation/Makefile b/Documentation/Makefile index 7aa470764b..5eb21d58ce 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -1,6 +1,23 @@ +PODS=README.pod CodingStyle.pod lilygut.pod lilyinput.pod +TXTS=$(PODS:.pod=.txt) +MANS=$(PODS:.pod=.1) +DOCFILES=$(PODS) Makefile -DOCFILES=commands CodingStyle algorithms Makefile breaking\ - slurfont pointers design literature inputformat + +default: + $(MAKE) -C .. doc + +doc: $(TXTS) dist: - ln $(DOCFILES) $(DDIR)/Documentation/ \ No newline at end of file + ln $(DOCFILES) $(DDIR)/Documentation/ +clean: + rm -f $(TXTS) $(MANS) + +%.txt: %.1 + groff -man -Tascii $< > $@ + +%.1: %.pod + pod2man --center="LilyPond documentation" --section="0"\ + --release="LilyPond $(MAJVER).$(MINVER).$(PATCHLEVEL)" $< > $@ + -- 2.39.5