diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-12-23 19:30:47 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-12-24 00:25:22 -0500 |
commit | 59e63738ec39da962612d2aa95c0940f0b91edd9 (patch) | |
tree | c9001b15c5b5977ad37226fe5abd3a83be8aa6cb /Makefile | |
parent | 1302857b65b981564b9093914f4b4c12fd17d308 (diff) | |
download | emacs.d-59e63738ec39da962612d2aa95c0940f0b91edd9.tar.gz |
Makefile: Strip unused parts
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -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 $< |