--- ProofGeneral-3.7-orig/Makefile 2008-01-31 14:06:38.000000000 +0100 +++ ProofGeneral-3.7/Makefile 2009-02-16 17:01:05.000000000 +0100 @@ -76,7 +76,7 @@ ## compile: $(EL) x-symbol/lisp/*.el lastemacs=`cat .byte-compile 2>/dev/null || echo `; if [ "$$lastemacs" != "" ] && [ "$$lastemacs" != "$(EMACS)" ]; then rm -f .byte-compile $(ELC) x-symbol/lisp/*.elc; fi - make .byte-compile + $(MAKE) .byte-compile ## Compiling can show up errors in the code, but be wary of fixing obsoletion ## or argument call warnings unless they're valid for both Emacsen. @@ -85,7 +85,7 @@ @echo "****************************************************************" @echo " Byte compiling... " @echo "****************************************************************" - make elc + $(MAKE) elc @echo " Byte compiling X-Symbol..." (cd x-symbol/lisp; $(MAKE) EMACS="$(EMACS) -q -no-site-file") echo $(EMACS) > $(@) @@ -222,10 +222,10 @@ for f in ${DOC_EXAMPLES}; do mkdir -p ${DOCDIR}/`dirname $$f`; cp -pf $$f ${DOCDIR}/$$f; done doc: FORCE - (cd doc; make EMACS=$(EMACS) $*) + (cd doc; $(MAKE) EMACS=$(EMACS) $*) doc.%: FORCE - (cd doc; make EMACS=$(EMACS) $*) + (cd doc; $(MAKE) EMACS=$(EMACS) $*) ## ## scripts: try to patch bash and perl scripts with correct paths