aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/GNUmakefile
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-02-28 21:23:44 -0800
committerGravatar Tom Willemse2019-02-28 21:23:44 -0800
commitf18002d662e264f952f6fb29f41214968a38beed (patch)
treea68a5a7e3155b8861dcc5a19e6c9a74b11c7ca9e /emacs/.emacs.d/GNUmakefile
parent481ceb9295aa6a7deea68bcc0be3ef35eaaa2354 (diff)
downloadnew-dotfiles-f18002d662e264f952f6fb29f41214968a38beed.tar.gz
new-dotfiles-f18002d662e264f952f6fb29f41214968a38beed.zip
Remove reference to init/ everything has been moved to emacs-config
Diffstat (limited to 'emacs/.emacs.d/GNUmakefile')
-rw-r--r--emacs/.emacs.d/GNUmakefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/emacs/.emacs.d/GNUmakefile b/emacs/.emacs.d/GNUmakefile
index 604bb52..738090d 100644
--- a/emacs/.emacs.d/GNUmakefile
+++ b/emacs/.emacs.d/GNUmakefile
@@ -7,14 +7,11 @@ AUTOLOADS_FILE := site-lisp/oni-site-autoloads.el
UNWANTED := $(AUTOLOADS_FILE) site-lisp/flycheck_% site-lisp/flycheck-%
SITE_LISPS := $(filter-out $(UNWANTED),$(wildcard site-lisp/*.el))
COMPILED_SITE_LISPS := $(addsuffix c,$(SITE_LISPS))
-INIT_LISPS := $(wildcard init/*.el)
-COMPILED_INIT_LISPS := $(addsuffix c,$(INIT_LISPS))
VENDOR_DIRS := $(wildcard vendor-lisp/*)
BASE_DIR := $(CURDIR)
.PHONY: all snippets
-all: $(COMPILED_SITE_LISPS) init.elc $(COMPILED_INIT_LISPS) \
- $(AUTOLOADS_FILE) snippets
+all: $(COMPILED_SITE_LISPS) init.elc $(AUTOLOADS_FILE) snippets
%.elc: %.el
@echo -e "\e[31mELC\e[0m $<"