X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=emacs_el%2FMakefile;fp=emacs_el%2FMakefile;h=c79737ef3cf1a9e84da85f3b29d6e1f3c6fd1186;hb=dcdee75b622e5c4760b657e6db400195000d2d45;hp=b85c3cc588282a4e76dfcfe70235d1281a728f62;hpb=443b12b43e21539ed2de2fc7f27162aa157d62a5;p=lib.git diff --git a/emacs_el/Makefile b/emacs_el/Makefile index b85c3cc..c79737e 100644 --- a/emacs_el/Makefile +++ b/emacs_el/Makefile @@ -8,15 +8,18 @@ ifeq ($(strip $(WHICH_EMACS)),) ELC_FILES=$(patsubst %.el,%.elc,$(wildcard *.el)) endif -all: $(ELC_FILES) +all: $(ELC_FILES) configuration EMACS=emacs +configuration: + $(MAKE) -C configuration + %.elc: %.el $(EMACS) -q -no-site-file -L . --no-site-file -batch -f batch-byte-compile $<; clean: rm -f *.elc -.PHONY: clean all +.PHONY: clean all configuration