diff --git a/Makefile b/Makefile index 665f960..66d61b7 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,12 @@ -.PHONY: default install +.PHONY: default init clean -default: install +default: init -install: - emacs --script install.el --kill +init: + git submodule update --init straight/repos/straight.el/ + +clean: + -rm straight/build-cache.el + -rm -rf straight/build + -rm -rf straight/repos + make init