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 f5ab473 commit e2b2df5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ help:
$(info make all - generate binary, byte-code and autoloads)
$(info make binary - generate binary)
$(info make lisp - generate byte-code and autoloads)
$(info make redo - re-generate byte-code and autoloads)
$(info make test - run tests)
$(info make clean - remove byte-code and autoloads)
$(info make distclean - remove binary, byte-code and autoloads)
Expand All @@ -53,6 +54,7 @@ binary: sqlite/emacsql-sqlite
sqlite/emacsql-sqlite:
$(MAKE) -C sqlite

redo: clean lisp
lisp: $(ELCS) loaddefs

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

0 comments on commit e2b2df5

Please sign in to comment.