From 4cc2a294a3ce619a8e52f6addbda8bb616f7fe15 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Thu, 21 Apr 2005 18:19:02 +0000 Subject: [PATCH] Don't compile documentation by default. * Makefile (all): Don't compile documentation by default. (doc): Use this rule to compile documentation. git-archimport-id: mwolson@gnu.org--2005/muse--main--1.0--patch-28 --- ChangeLog | 14 ++++++++++++++ Makefile | 4 +++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 471ea5b..e83d1ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,20 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2005/muse--main--1.0 # +2005-04-21 18:19:02 GMT Michael Olson patch-28 + + Summary: + Don't compile documentation by default. + Revision: + muse--main--1.0--patch-28 + + * Makefile (all): Don't compile documentation by default. + (doc): Use this rule to compile documentation. + + modified files: + ChangeLog Makefile + + 2005-04-16 18:08:24 GMT Michael Olson patch-27 Summary: diff --git a/Makefile b/Makefile index 28f423e..c94ffa3 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,9 @@ EMACS = emacs TARGETS = README.html README.pdf README.info ELC = $(patsubst %.el,%.elc,$(wildcard *.el)) -all: $(TARGETS) $(ELC) +all: $(ELC) + +doc: $(TARGETS) %.html: % ./scripts/publish html $< -- 2.11.4.GIT