12 lines
392 B
Makefile
12 lines
392 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,$?)
|