From: zappo Date: Fri, 16 Oct 2009 20:20:04 +0000 (+0000) Subject: (ELISPPRELOAD): New (Lisp): Use preloads. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=467bfc2f0ff51008c35c8083391d301058a727e4;p=emacs.git (ELISPPRELOAD): New (Lisp): Use preloads. --- diff --git a/test/manual/cedet/Makefile b/test/manual/cedet/Makefile index 4d3f9db8150..8cf17751b9c 100644 --- a/test/manual/cedet/Makefile +++ b/test/manual/cedet/Makefile @@ -13,6 +13,7 @@ Lisp_LISP=cedet-integ-test.el cit-cpp.el cit-el.el cit-texi.el cit-load.el cit-s EMACS=emacs EMACSFLAGS=-batch --no-site-file LOADPATH= ../speedbar/ ../cogre/ ../contrib/ ../ede/ ../srecode/ ../semantic/wisent/ ../semantic/bovine/ ../semantic/ ../eieio/ ../common/ +ELISPPRELOAD= cedet-compat templates_MISC=cit-extra-cpp.srt scripts_MISC=cit-test.sh Misc_MISC=README ChangeLog cit-uml.cgr @@ -29,6 +30,9 @@ Lisp: $(Lisp_LISP) for loadpath in . ${LOADPATH}; do \ echo "(add-to-list 'load-path \"$$loadpath\")" >> $@-compile-script; \ done; + for preload in ${ELISPPRELOAD}; do \ + echo "(load \"$$preload\")" >> $@-compile-script; \ + done; @echo "(setq debug-on-error t)" >> $@-compile-script "$(EMACS)" $(EMACSFLAGS) -l $@-compile-script -f batch-byte-compile $^