]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.45
authorfred <fred>
Sun, 24 Mar 2002 19:36:44 +0000 (19:36 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:36:44 +0000 (19:36 +0000)
Documentation/Makefile
make/Rules.make
make/Variables.make

index 272ea0d2799c04d09fc1dc1e09e9200f12deaa52..817fbeb423c5e76e29570b95643cddedfce4ea2b 100644 (file)
@@ -51,9 +51,11 @@ include ./$(depth)/make/Rules.make
 localclean:
        rm -f $(TEXTFILES) $(HTMLFILES) $(GROFFFILES)
 
-localinstall: $(outdir)/lilypond.1
+localinstall: $(outdir)/lilypond.1 $(outdir)/mudela.5
+       $(INSTALL) -d $(mandir)/man5
        $(INSTALL) -d $(mandir)/man1
-       $(INSTALL) -m 755 $< $(mandir)/man1
-
+       $(INSTALL) -m 755 $(outdir)/lilypond.1 $(mandir)/man1
+       $(INSTALL) -m 755 $(outdir)/mudela.5 $(mandir)/man5
 localuninstall:
        rm -f $(mandir)/man1/lilypond.1
index 3f3e5f86d1b2bcdbe2da06cce017099b52fa8731..b7ec413b65f1b2358eb53643c6bc0878f7916e28 100644 (file)
@@ -48,9 +48,13 @@ $(outdir)/%.text: $(outdir)/%.1
 $(depth)/%.text: $(outdir)/%.text
        cp $< $@
 
+$(outdir)/%.5: %.pod
+       $(pod2groff)
 $(outdir)/%.1: %.pod
-       pod2man --center="LilyPond documentation" --section="0"\
-               --release="LilyPond $(TOPLEVEL_MAJOR_VERSION).$(TOPLEVEL_MINOR_VERSION).$(TOPLEVEL_PATCH_LEVEL)" $< > $@
+       $(pod2groff)
+
+
+
 #
 
 # outdirs:
index abe60c7a9a7dbbb8dfdcfa3a8abca5cda346b6c7..d1ca0485813e9a05f39b5a4f426a252f7e906cc1 100644 (file)
@@ -169,7 +169,9 @@ LIBRARY = $(LIB_PREFIX)$(NAME)$(LIB_SUFFIX)
 STRIPDEBUG=true #replace to do stripping of certain objects
 
 DISTFILES=$(EXTRA_DISTFILES) Makefile $(ALL_SOURCES)
-DOCDIR=$(depth)/doc++
+DOCDIR=$(depth)/$(outdir)
 
 
 progdocs=$(allhh) $(allcc) 
+pod2groff=pod2man --center="LilyPond documentation" --section="0"\
+       --release="LilyPond $(TOPLEVEL_MAJOR_VERSION).$(TOPLEVEL_MINOR_VERSION).$(TOPLEVEL_PATCH_LEVEL)" $< > $@