branch: elpa/htmlize
commit 8484745ef6c4be33e5cc14ff53ed8b7607d56f3d
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
make: Minor tweaks
---
Makefile | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/Makefile b/Makefile
index 2c62774fb00..3b2855b1784 100644
--- a/Makefile
+++ b/Makefile
@@ -17,18 +17,18 @@ LOAD_PATH += -L .
all: lisp
help:
- $(info make all - generate byte-code and autoloads)
- $(info make lisp - generate byte-code and autoloads)
- $(info make redo - re-generate byte-code and autoloads)
- $(info make htmlize - htmlize htmlize.el)
- $(info make clean - remove generated files)
+ $(info make all -- Build lisp)
+ $(info make lisp -- Build lisp)
+ $(info make redo -- Build lisp from scratch)
+ $(info make htmlize -- Htmlize htmlize.el)
+ $(info make clean -- Remove built files)
@printf "\n"
redo: clean lisp
-lisp: $(ELCS) loaddefs check-declare
+lisp: $(ELCS) autoloads check-declare
-loaddefs: $(PKG)-autoloads.el
+autoloads: $(PKG)-autoloads.el
%.elc: %.el
@printf "Compiling $<\n"
@@ -45,7 +45,7 @@ check-declare:
htmlize: $(HTML)
-CLEAN = $(ELCS) $(PKG)-autoloads.el
+CLEAN = $(ELCS) $(PKG)-autoloads.el
clean:
@printf " Cleaning...\n"