From: fred Date: Sun, 24 Mar 2002 20:11:07 +0000 (+0000) Subject: lilypond-0.1.62 X-Git-Tag: release/1.5.59~3132 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9341f37e3001ca1c6599ae78723b555ddc7e05be;p=lilypond.git lilypond-0.1.62 --- diff --git a/Documentation/Makefile b/Documentation/Makefile index c152287412..fc2341ae54 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -8,7 +8,7 @@ depth = .. # identify module: # NAME = Documentation -SUBDIRS=man tex +SUBDIRS=man tex # @@ -33,19 +33,28 @@ default: all do-doc # list of distribution files: # XPMS=$(wildcard *.xpm) -giffiles=$(XPMS:.xpm=.gif) +giffiles = $(addprefix $(outdir)/,$(XPMS:.xpm=.gif)) -gifs: $(addprefix $(outdir)/, $(giffiles)) +gifs: $(giffiles) - -EXTRA_DISTFILES = $(XPMS) vocabulary-data vocabulary-forms.el automake.urgh +EXTRA_DISTFILES = $(XPMS) vocabulary-data vocabulary-forms.el automake.urgh\ + gnu-music-history # don't do DVI files. They can only be made if lily is installed do-doc: $(TEXTFILES) -local-WWW: $(HTMLFILES) + +$(outdir)/%.txt: $(depth)/% + -rm $@ + ln $< $@ + +README_TOPFILES=NEWS DEDICATION TODO ANNOUNCE-0.1 +README_TXTFILES=$(addprefix $(outdir)/,$(addsuffix .txt, $(README_TOPFILES))) + +local-WWW: $(HTMLFILES) $(README_TXTFILES) $(giffiles) # generic targets and rules: # include $(depth)/make/Targets.make include $(depth)/make/Rules.make +