Add init and clean rules to Makefile, remove install
init checks out straight submodule, clean removes straight build and repos directories, then checks out submodule again (since it's also stored in repos directory)
This commit is contained in:
parent
dd5d4ea7ec
commit
7eece7cefb
14
Makefile
14
Makefile
|
@ -1,6 +1,12 @@
|
||||||
.PHONY: default install
|
.PHONY: default init clean
|
||||||
|
|
||||||
default: install
|
default: init
|
||||||
|
|
||||||
install:
|
init:
|
||||||
emacs --script install.el --kill
|
git submodule update --init straight/repos/straight.el/
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-rm straight/build-cache.el
|
||||||
|
-rm -rf straight/build
|
||||||
|
-rm -rf straight/repos
|
||||||
|
make init
|
||||||
|
|
Loading…
Reference in a new issue