emacs/Makefile
Evie Litherland-Smith 7eece7cefb 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)
2024-08-10 06:29:32 +01:00

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