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 03f878a commit b455382
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ 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 test - run tests)
$(info make demo - run tests showing their documentation)
$(info make clean - remove generated files)
@printf "\n"

redo: clean $(ELCS) loaddefs check-declare
@$(MAKE) -C test lisp

lisp: $(ELCS) loaddefs check-declare
@$(MAKE) -C test lisp

Expand Down

0 comments on commit b455382

Please sign in to comment.