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 49bc029 commit 17da66c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 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,8 @@ help:
$(info make clean - remove most generated files)
@printf "\n"

redo:
@$(MAKE) -C lisp clean lisp
lisp:
@$(MAKE) -C lisp lisp

Expand Down

0 comments on commit 17da66c

Please sign in to comment.