diff options
author | Franck Cuny <franck@fcuny.net> | 2024-05-26 14:03:33 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-05-26 14:03:33 -0700 |
commit | dfc9d5eb41bd5010fd302abbc1c27c9702ffe202 (patch) | |
tree | bcee0815d7f63f2b4dc02e91e3e743c007d32727 | |
parent | massive cleanup (diff) | |
download | emacs.d-dfc9d5eb41bd5010fd302abbc1c27c9702ffe202.tar.gz |
don't delete init.el with make clean
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 7a16801..6d23139 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,9 @@ LN = @ln -sf emacs: $(LN) $(PWD) $(XDG_CONFIG) +.PHONY: clean clean: - rm -f init.el *.elc *~ settings.el + rm -f *.elc *~ settings.el rm -rf elpa eln-cache .PHONY: setup |