aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2009-03-10 10:32:31 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2009-03-10 10:32:31 +0000
commit777dc33ca65659208a5ed37e33ad4127ea087436 (patch)
treea39dfb24991b11d256794411865f196c99414008 /Makefile
parent91f51adb9c336cc9255152063fbc5d2baf00e1c5 (diff)
Fix to use in place of make, see http://proofgeneral.inf.ed.ac.uk/trac/ticket/262
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 7caa3434..b1c2e17f 100644
--- a/Makefile
+++ b/Makefile
@@ -79,7 +79,7 @@ compile: $(EL)
@echo "****************************************************************"
@echo " Byte compiling... "
@echo "****************************************************************"
- make elc
+ $(MAKE) elc
@echo "****************************************************************"
@echo " Finished."
@echo "****************************************************************"
@@ -109,7 +109,7 @@ all: compile scripts
## Remove generated targets
##
clean: cleanpgscripts
- rm -f $(ELC) *~ */*~ .\#* */.\#* .byte-compile
+ rm -f $(ELC) *~ */*~ .\#* */.\#*
(cd doc; $(MAKE) clean)
distclean: clean
@@ -199,10 +199,10 @@ install-doc: doc.info doc.pdf
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