Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 259125
Collapse All | Expand All

(-)ProofGeneral-3.7-orig/Makefile (-4 / +4 lines)
Lines 76-82 Link Here
76
##
76
##
77
compile: $(EL) x-symbol/lisp/*.el
77
compile: $(EL) x-symbol/lisp/*.el
78
	lastemacs=`cat .byte-compile 2>/dev/null || echo `; if [ "$$lastemacs" != "" ] && [ "$$lastemacs" != "$(EMACS)" ]; then rm -f .byte-compile $(ELC) x-symbol/lisp/*.elc; fi
78
	lastemacs=`cat .byte-compile 2>/dev/null || echo `; if [ "$$lastemacs" != "" ] && [ "$$lastemacs" != "$(EMACS)" ]; then rm -f .byte-compile $(ELC) x-symbol/lisp/*.elc; fi
79
	make .byte-compile
79
	$(MAKE) .byte-compile
80
80
81
## Compiling can show up errors in the code, but be wary of fixing obsoletion
81
## Compiling can show up errors in the code, but be wary of fixing obsoletion
82
## or argument call warnings unless they're valid for both Emacsen.
82
## or argument call warnings unless they're valid for both Emacsen.
Lines 85-91 Link Here
85
	@echo "****************************************************************"
85
	@echo "****************************************************************"
86
	@echo " Byte compiling... "
86
	@echo " Byte compiling... "
87
	@echo "****************************************************************"
87
	@echo "****************************************************************"
88
	make elc
88
	$(MAKE) elc
89
	@echo " Byte compiling X-Symbol..."
89
	@echo " Byte compiling X-Symbol..."
90
	(cd x-symbol/lisp; $(MAKE) EMACS="$(EMACS) -q -no-site-file")
90
	(cd x-symbol/lisp; $(MAKE) EMACS="$(EMACS) -q -no-site-file")
91
	echo $(EMACS) > $(@)
91
	echo $(EMACS) > $(@)
Lines 222-231 Link Here
222
	for f in ${DOC_EXAMPLES}; do mkdir -p ${DOCDIR}/`dirname $$f`; cp -pf $$f ${DOCDIR}/$$f; done
222
	for f in ${DOC_EXAMPLES}; do mkdir -p ${DOCDIR}/`dirname $$f`; cp -pf $$f ${DOCDIR}/$$f; done
223
223
224
doc: FORCE
224
doc: FORCE
225
	(cd doc; make EMACS=$(EMACS) $*)
225
	(cd doc; $(MAKE) EMACS=$(EMACS) $*)
226
226
227
doc.%: FORCE
227
doc.%: FORCE
228
	(cd doc; make EMACS=$(EMACS) $*)
228
	(cd doc; $(MAKE) EMACS=$(EMACS) $*)
229
229
230
##
230
##
231
## scripts: try to patch bash and perl scripts with correct paths
231
## scripts: try to patch bash and perl scripts with correct paths

Return to bug 259125