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 be368ce commit a706ba1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ all: lisp docs
help:
$(info make all - generate lisp and manual)
$(info make lisp - generate byte-code and autoloads)
$(info make redo - re-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)
Expand All @@ -21,6 +22,7 @@ help:
$(info make clean - remove most generated files)
@printf "\n"

redo: clean-lisp lisp
lisp: $(ELCS) loaddefs check-declare

docs:
Expand All @@ -46,9 +48,11 @@ stats:
stats-upload:
@$(MAKE) -C docs stats-upload

clean:
clean: clean-lisp clean-docs
clean-lisp:
@printf " Cleaning *...\n"
@rm -rf $(ELCS) $(PKG)-autoloads.el
clean-docs:
@$(MAKE) -C docs clean

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

0 comments on commit a706ba1

Please sign in to comment.