diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2015-04-06 15:16:00 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2015-04-06 15:16:00 +0200 |
| commit | d3db8c9c13e5472cf7ff16adbcc2df083b04b16c (patch) | |
| tree | a4258a3e47929ab41d6ae38503fce4be7eb658f6 /Makefile | |
| parent | 2bc1bfd9483af9fcfcd54e1dcf15f8f441768338 (diff) | |
add stub manual and release notes
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -75,7 +75,7 @@ VERSION=$(shell \ (princ magit-version))") .PHONY: all -all: lisp +all: lisp docs .PHONY: lisp lisp: $(ELCS) loaddefs magit-version.el @@ -93,6 +93,7 @@ help: $(info make - build elisp files) $(info make lisp - ditto) $(info make all - build elisp files and documentation) + $(info make docs - generate documentation) $(info ) $(info Install) $(info =======) @@ -159,7 +160,13 @@ $(LOADDEFS_FILE): $(ELS) (make-backup-files nil))\ (update-directory-autoloads \".\")))" +docs: Documentation/magit.info Documentation/dir + +Documentation/dir: Documentation/magit.info + @$(INSTALL_INFO) --dir=$@ $< + %.info: %.texi + @printf "Generating magit.info\n" @$(MAKEINFO) $< -o $@ CONTRIBUTORS_URL = https://github.com/magit/magit/graphs/contributors @@ -234,7 +241,8 @@ test-interactive: .PHONY: clean clean: @printf "Cleaning...\n" - @$(RM) $(ELCS) $(LOADDEFS_FILE) magit-version.el *.tar.gz *.tar dir + @$(RM) $(ELCS) $(LOADDEFS_FILE) magit-version.el *.tar.gz *.tar + @$(RM) dir Documentation/dir Documentation/magit.info @$(RMDIR) magit-$(VERSION) DIST_FILES = $(ELS) magit-version.el Makefile AUTHORS.md README.md COPYING |
