From 73fb6b080076030f2c81db0c6c8ca7ae0b587de6 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 9 Jun 2017 00:33:34 +0200 Subject: [PATCH] Simplify make core & make tasks --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 59e8cf61e..c34928482 100644 --- a/Makefile +++ b/Makefile @@ -27,11 +27,11 @@ compile: init.el clean @$(EMACS) -f doom/compile core: init.el clean - @$(EMACS) -f doom/compile -- init.el $(shell find core/ -maxdepth 2 -type f -name '*.el') + @$(EMACS) -f doom/compile -- init.el core $(MODULES): init.el .local/autoloads.el @rm -fv $(shell find $@ -maxdepth 2 -type f -name '*.elc') - @$(EMACS) -f doom/compile -- $(shell find $@ -maxdepth 2 -type f -name '*.el') + @$(EMACS) -f doom/compile -- $@ clean: @$(EMACS) -f doom/clean-compiled