12 lines
396 B
Makefile
12 lines
396 B
Makefile
# #########################################################################
|
|
# general emacs lisp pattern rules
|
|
# #########################################################################
|
|
%/elisp-all:
|
|
"$(MAKE)" -C $* $(@F)
|
|
|
|
%.elc : %.el
|
|
"$(EMACS)" -batch -q -no-site-file\
|
|
$(addprefix -L ,$(LOAD_PATH))\
|
|
$(EMACSFLAGS)\
|
|
-f batch-byte-compile $(call emacspath,$?)
|