summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2021-12-15 20:11:30 +0100
committerJonas Bernoulli <jonas@bernoul.li>2021-12-16 02:54:11 +0100
commite57d1e176b4737421d81cc5c2d9e5354321cad2e (patch)
tree70e6e554e71e91e44028721c7699b247d0777e30 /Makefile
parentf4790969fe9ed0084be537ed476e9292d1e92244 (diff)
make: Cosmetics
For consistency with Makefiles of related repositories.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index db38d2c..404f119 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
-include config.mk
include default.mk
-.PHONY: lisp docs clean
+.PHONY: lisp docs
all: lisp docs
help:
$(info make all - generate lisp and manual)
- $(info make docs - generate most manual formats)
$(info make lisp - generate byte-code and autoloads)
+ $(info make docs - generate most manual formats)
$(info make texi - generate texi manual (see comments))
$(info make info - generate info manual)
$(info make html - generate html manual file)
@@ -25,28 +25,21 @@ lisp:
docs:
@$(MAKE) -C docs docs
-
texi: bump-version
@$(MAKE) -C docs texi
-
info:
@$(MAKE) -C docs info
-
html:
@$(MAKE) -C docs html
-
html-dir:
@$(MAKE) -C docs html-dir
-
pdf:
@$(MAKE) -C docs pdf
-
stats:
@$(MAKE) -C docs stats
publish:
@$(MAKE) -C docs publish
-
release:
@$(MAKE) VERSION=$(VERSION) -C docs release
@@ -57,6 +50,5 @@ bump-version:
@sed -i -e "/Package-Version:/s|UNRELEASED|$(shell date +%F)|" docs/CHANGELOG
clean:
- @printf "Cleaning...\n"
@$(MAKE) -C lisp clean
@$(MAKE) -C docs clean