Skip to content

Commit

Permalink
make: Add redo target
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Dec 17, 2023
1 parent f72fe7f commit b120da5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Expand Up @@ -18,9 +18,12 @@ all: lisp
help:
$(info make all - generate byte-code and autoloads)
$(info make lisp - generate byte-code and autoloads)
$(info make clean - remove byte-code and autoloads)
$(info make redo - re-generate byte-code and autoloads)
$(info make clean - remove generated files)
@printf "\n"

redo: clean lisp

lisp: $(ELCS) loaddefs check-declare

loaddefs: $(PKG)-autoloads.el
Expand Down

0 comments on commit b120da5

Please sign in to comment.