summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-12-23 19:30:47 -0500
committerKyle Meyer <kyle@kyleam.com>2020-12-24 00:25:22 -0500
commit59e63738ec39da962612d2aa95c0940f0b91edd9 (patch)
treec9001b15c5b5977ad37226fe5abd3a83be8aa6cb
parent1302857b65b981564b9093914f4b4c12fd17d308 (diff)
downloademacs.d-59e63738ec39da962612d2aa95c0940f0b91edd9.tar.gz
Makefile: Strip unused parts
-rw-r--r--Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 54b6d92..b4b937a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,4 @@
-
-LOAD_PATH ?=
-BATCH = emacs -Q --batch $(LOAD_PATH)
+BATCH = emacs -Q --batch
LOADDEFS_FNAME = km-emacs-autoloads.el
LOADDEFS = lisp/$(LOADDEFS_FNAME)
@@ -14,6 +12,3 @@ $(LOADDEFS): $(ELS)
(default-directory \"$(CURDIR)\") \
(generated-autoload-file (expand-file-name \"$(LOADDEFS)\"))) \
(update-directory-autoloads \"lisp/\"))"
-
-%.elc: %.el
- @$(BATCH) -f batch-byte-compile $<