Remove compile targets from Makefile

Apparently there's no benefit to compiling the init.
This commit is contained in:
contrapunctus 2022-01-15 10:09:27 +05:30
parent 57bbbdb701
commit c51ecd08b8
1 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,6 @@
.phony: all setup tangle compile lint clean
.phony: all setup tangle lint clean
all: setup tangle compile lint
all: setup tangle lint
setup:
emacs --batch --eval="(package-initialize)" \
@ -17,6 +17,7 @@ init-org.el:
echo "upgrade it before tangling." ; \
echo ; \
emacs --batch \
--eval="(package-initialize)" \
--eval="(require 'ob-tangle)" \
--eval='(org-babel-tangle-file "init.org")' ; \
else \
@ -28,9 +29,6 @@ init-org.el:
tangle: init-org.el
compile: tangle
emacs -q -Q --batch --eval='(byte-compile-file "init-org.el")' ; \
lint-check-declare: tangle
emacs -q -Q --batch --eval='(check-declare-file "init-org.el")'