]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/Makefile
release: 0.0.57
[lilypond.git] / Documentation / Makefile
index ea2f12ed55306bad573323265cef8a7297e6666e..542425ec77452aa95b838f750d9b90d52d334cc0 100644 (file)
@@ -1,6 +1,69 @@
+# Documentation/Makefile
 
-DOCFILES=commands CodingStyle algorithms Makefile breaking\
-       slurfont pointers design
+# subdir level:
+#
+depth = ..
+#
 
-dist:
-       ln $(DOCFILES) $(DDIR)/Documentation/
\ No newline at end of file
+# identify module:
+#
+NAME = Documentation
+
+#
+
+# generic variables:
+#
+include ./$(depth)/make/Variables.make 
+include ./$(depth)/make/Version.make
+include ./$(depth)/make/Files.make 
+#
+
+#
+
+OUTPODFILES = $(addprefix $(outdir)/,$(PODFILES))
+TEXTFILES = $(OUTPODFILES:.pod=.text)
+GROFFFILES = $(OUTPODFILES:.pod=.1)
+HTMLFILES = $(OUTPODFILES:.pod=.html)
+#
+
+# list of distribution files:
+#
+EXTRA_DISTFILES = lelie_icon.gif lelie_logo.gif
+#
+
+default: do-doc
+       true
+do-doc: $(TEXTFILES)
+
+html: $(HTMLFILES)
+
+htmldist: html
+       ./$(lily_bindir)/make_website
+
+
+# generic targets and rules:
+#
+include ./$(depth)/make/Targets.make
+include ./$(depth)/make/Rules.make
+#
+
+localclean:
+       rm -f out/*
+       rm -f $(TEXTFILES) $(HTMLFILES) $(GROFFFILES)
+
+MAN1FILES = lilypond convert-mudela mi2mu
+MAN1GROFF = $(addprefix $(outdir)/, $(addsuffix .1,$(MAN1FILES)))
+
+bla:
+       echo $(MANGROFF)
+       echo $(MANFILES)
+
+localinstall: $(outdir)/lilypond.1 $(outdir)/mudela.5
+       $(INSTALL) -d $(mandir)/man5
+       $(INSTALL) -d $(mandir)/man1
+       $(INSTALL) -m 755 $(MAN1GROFF) $(mandir)/man1
+       $(INSTALL) -m 755 $(outdir)/mudela.5 $(mandir)/man5
+
+localuninstall:
+       rm -f $(mandir)/man1/lilypond.1
+       rm -f $(mandir)/man1/convert-mudela.1