#!/usr/bin/make WHICH_EMACS:=$(shell which emacs >/dev/null 2>&1 || echo "fail") ELC_FILES= ifeq ($(strip $(WHICH_EMACS)),) ELC_FILES=$(patsubst %.el,%.elc,$(wildcard *.el)) endif SUBDIRS= LIBOPTS=-L . ifeq ($(strip $(WHICH_EMACS)),) SUBDIRS=configuration helm org-ref LIBDIRS=-L . -L helm endif all: $(ELC_FILES) $(SUBDIRS) EMACS=emacs $(SUBDIRS): %: $(MAKE) -C $@ %.elc: %.el $(EMACS) -q -no-site-file $(LIBDIRS) --no-site-file -batch -f batch-byte-compile $<; clean: rm -f *.elc .PHONY: clean all $(SUBDIRS)