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)
13 lines
202 B
Makefile
13 lines
202 B
Makefile
.PHONY: default init clean
|
|
|
|
default: init
|
|
|
|
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
|