aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/GNUmakefile
diff options
context:
space:
mode:
authorGravatar Tom Willemse2017-12-29 10:54:00 -0800
committerGravatar Tom Willemse2017-12-29 10:54:00 -0800
commitfdb5495db22be69958da494e6d9bf9ca4fe17551 (patch)
treeecdcdc72332d26b8c7a81dbefef4ab42c27afd1a /emacs/.emacs.d/GNUmakefile
parenta494677ab2f9e06e86d86afad4086a6dfc0a070a (diff)
downloadnew-dotfiles-fdb5495db22be69958da494e6d9bf9ca4fe17551.tar.gz
new-dotfiles-fdb5495db22be69958da494e6d9bf9ca4fe17551.zip
Move Org mode config to init.org
Diffstat (limited to 'emacs/.emacs.d/GNUmakefile')
-rw-r--r--emacs/.emacs.d/GNUmakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs/.emacs.d/GNUmakefile b/emacs/.emacs.d/GNUmakefile
index dd2bf07..a6b3f25 100644
--- a/emacs/.emacs.d/GNUmakefile
+++ b/emacs/.emacs.d/GNUmakefile
@@ -5,12 +5,15 @@ include ../../dotfiles.mk
AUTOLOADS_FILE = site-lisp/site-autoloads.el
UNWANTED = $(AUTOLOADS_FILE) site-lisp/flycheck_% site-lisp/flycheck-%
SITE_LISPS = $(addsuffix c,$(filter-out $(UNWANTED),$(wildcard site-lisp/*.el)))
-INIT_LISPS = $(addsuffix .elc,$(basename $(wildcard init/*.org)))
+INIT_LISPS = init/oni-org-init.elc $(addsuffix .elc,$(basename $(wildcard init/*.org)))
VENDOR_DIRS = $(wildcard vendor-lisp/*)
.PHONE: all snippets
all: $(SITE_LISPS) init.elc $(INIT_LISPS) $(AUTOLOADS_FILE) snippets
+init.el init/oni-org-init.el: init.org
+ $(call tangle,emacs-lisp)
+
%.el: %.org
$(call tangle,emacs-lisp)