]> git.eshelyaron.com Git - emacs.git/commitdiff
(ELISPPRELOAD): New (Lisp): Use preloads.
authorzappo <zappo@users.sourceforge.net>
Fri, 16 Oct 2009 20:20:04 +0000 (20:20 +0000)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 15:47:55 +0000 (17:47 +0200)
test/manual/cedet/Makefile

index 4d3f9db8150b921c466fd604b6341caa636090aa..8cf17751b9c1decfa547d9b2151a3f0d0efe1457 100644 (file)
@@ -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 $^