summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/emacs/.emacs.d/Makefile b/emacs/.emacs.d/Makefile
deleted file mode 100644
index 71415d5..0000000
--- a/emacs/.emacs.d/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-EMACS := ${NIX_LINK}/bin/emacs
-
-# The first target is the default.  `all` is typically defined here.
-all: init.elc
-
-# These targets don't pertain to files
-.PHONY: all clean
-
-init.elc: init.el
-	$(EMACS) --batch --no-init-file --funcall batch-byte-compile init.el
-
-clean:
-	rm init.elc