*** empty log message ***
[xwl-emacs-config.git] / .emacs.d / site-lisp / Makefile.common
blob904d335723578c4da1c80fb55aee598688ae279e
1 # byte compile elisp files
3 EMACS=emacs
4 MAINT_FILE=~/.emacs.d/site-lisp/config/xwl-path.el
5 SRC=$(filter-out $(MAINT_FILE) wajig.el, $(wildcard *.el))
6 OBJ=$(wildcard *.elc)
7 TARGET=$(patsubst %.el,%.elc,$(SRC))
9 all: #$(TARGET)
10         @echo "byte-compile disabled."
12 %.elc: %.el
13         @$(EMACS) -q --no-site-file -batch  -l $(MAINT_FILE) -f batch-byte-compile $<
15 clean:
16         -rm -f *~ *.elc