split emacsd.mk -> emacsd-rules.mk, emacsd-defs.mk

This commit is contained in:
Kai Tetzlaff 2012-07-30 21:29:33 +02:00
parent 07816163d5
commit 17079090b1
2 changed files with 11 additions and 13 deletions

View File

@ -21,19 +21,6 @@ CEDET_HOME := $(subst /cygdrive/d,,$(LISP_DIR)/cedet)
#$(error fixpath: '$(call fixpath,$(HOME))')
# #########################################################################
# general 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,$?)
# Local Variables:
# tab-width: 2
# End:

11
emacsd-rules.mk Normal file
View File

@ -0,0 +1,11 @@
# #########################################################################
# 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,$?)