aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1993-09-10 05:18:08 +0000
committerRoland McGrath1993-09-10 05:18:08 +0000
commit68c43ec49e6e4c706f96d99ac0c35a1b74ecc43e (patch)
tree0ef397a68888f8dc7494ffc813ff97b97cb2616e
parent21ed446104a71ad86f8d1a883ab095d97db1d0c0 (diff)
downloademacs-68c43ec49e6e4c706f96d99ac0c35a1b74ecc43e.tar.gz
emacs-68c43ec49e6e4c706f96d99ac0c35a1b74ecc43e.zip
(info, dvi, clean, mostlyclean, distclean, realclean, unlock, relock): Use
`$(MAKE)' in place of plain `make'.
-rw-r--r--Makefile.in52
1 files changed, 26 insertions, 26 deletions
diff --git a/Makefile.in b/Makefile.in
index ef610abe2f8..315f52a97c1 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -425,10 +425,10 @@ FRC.mostlyclean FRC.clean FRC.distclean FRC.realclean:
425### target for GCC does not delete `libgcc.a', because recompiling it 425### target for GCC does not delete `libgcc.a', because recompiling it
426### is rarely necessary and takes a lot of time. 426### is rarely necessary and takes a lot of time.
427mostlyclean: FRC.mostlyclean 427mostlyclean: FRC.mostlyclean
428 (cd src; make ${MFLAGS} mostlyclean) 428 (cd src; $(MAKE) ${MFLAGS} mostlyclean)
429 (cd oldXMenu; make ${MFLAGS} mostlyclean) 429 (cd oldXMenu; $(MAKE) ${MFLAGS} mostlyclean)
430 (cd lib-src; make ${MFLAGS} mostlyclean) 430 (cd lib-src; $(MAKE) ${MFLAGS} mostlyclean)
431 (cd man; make ${MFLAGS} mostlyclean) 431 (cd man; $(MAKE) ${MFLAGS} mostlyclean)
432 432
433### `clean' 433### `clean'
434### Delete all files from the current directory that are normally 434### Delete all files from the current directory that are normally
@@ -439,10 +439,10 @@ mostlyclean: FRC.mostlyclean
439### 439###
440### Delete `.dvi' files here if they are not part of the distribution. 440### Delete `.dvi' files here if they are not part of the distribution.
441clean: FRC.clean 441clean: FRC.clean
442 (cd src; make ${MFLAGS} clean) 442 (cd src; $(MAKE) ${MFLAGS} clean)
443 (cd oldXMenu; make ${MFLAGS} clean) 443 (cd oldXMenu; $(MAKE) ${MFLAGS} clean)
444 (cd lib-src; make ${MFLAGS} clean) 444 (cd lib-src; $(MAKE) ${MFLAGS} clean)
445 (cd man; make ${MFLAGS} clean) 445 (cd man; $(MAKE) ${MFLAGS} clean)
446 446
447### `distclean' 447### `distclean'
448### Delete all files from the current directory that are created by 448### Delete all files from the current directory that are created by
@@ -455,10 +455,10 @@ top_distclean=\
455 rm -f Makefile ${SUBDIR_MAKEFILES} ; \ 455 rm -f Makefile ${SUBDIR_MAKEFILES} ; \
456 (cd lock ; rm -f *) 456 (cd lock ; rm -f *)
457distclean: FRC.distclean 457distclean: FRC.distclean
458 (cd src; make ${MFLAGS} distclean) 458 (cd src; $(MAKE) ${MFLAGS} distclean)
459 (cd oldXMenu; make ${MFLAGS} distclean) 459 (cd oldXMenu; $(MAKE) ${MFLAGS} distclean)
460 (cd lib-src; make ${MFLAGS} distclean) 460 (cd lib-src; $(MAKE) ${MFLAGS} distclean)
461 (cd man; make ${MFLAGS} distclean) 461 (cd man; $(MAKE) ${MFLAGS} distclean)
462 ${top_distclean} 462 ${top_distclean}
463 463
464 464
@@ -474,10 +474,10 @@ distclean: FRC.distclean
474### anything that needs to exist in order to run `configure' and then 474### anything that needs to exist in order to run `configure' and then
475### begin to build the program. 475### begin to build the program.
476realclean: FRC.realclean 476realclean: FRC.realclean
477 (cd src; make ${MFLAGS} realclean) 477 (cd src; $(MAKE) ${MFLAGS} realclean)
478 (cd oldXMenu; make ${MFLAGS} realclean) 478 (cd oldXMenu; $(MAKE) ${MFLAGS} realclean)
479 (cd lib-src; make ${MFLAGS} realclean) 479 (cd lib-src; $(MAKE) ${MFLAGS} realclean)
480 (cd man; make ${MFLAGS} realclean) 480 (cd man; $(MAKE) ${MFLAGS} realclean)
481 ${top_distclean} 481 ${top_distclean}
482 482
483### This doesn't actually appear in the coding standards, but Karl 483### This doesn't actually appear in the coding standards, but Karl
@@ -506,24 +506,24 @@ SOURCES = ChangeLog GETTING.GNU.SOFTWARE INSTALL Makefile.in PROBLEMS \
506unlock: 506unlock:
507 chmod u+w $(SOURCES) cpp/* 507 chmod u+w $(SOURCES) cpp/*
508 -(cd elisp; chmod u+w Makefile README *.texi) 508 -(cd elisp; chmod u+w Makefile README *.texi)
509 (cd etc; make unlock) 509 (cd etc; $(MAKE) unlock)
510 (cd lib-src; make unlock) 510 (cd lib-src; $(MAKE) unlock)
511 (cd lisp; make unlock) 511 (cd lisp; $(MAKE) unlock)
512 (cd lisp/term; chmod u+w README *.el) 512 (cd lisp/term; chmod u+w README *.el)
513 (cd man; chmod u+w *texi* ChangeLog split-man) 513 (cd man; chmod u+w *texi* ChangeLog split-man)
514 (cd oldXMenu; chmod u+w *.[ch] Makefile README) 514 (cd oldXMenu; chmod u+w *.[ch] Makefile README)
515 (cd src; make unlock) 515 (cd src; $(MAKE) unlock)
516 516
517relock: 517relock:
518 chmod u-w $(SOURCES) cpp/* 518 chmod u-w $(SOURCES) cpp/*
519 -(cd elisp; chmod u-w Makefile README *.texi) 519 -(cd elisp; chmod u-w Makefile README *.texi)
520 (cd etc; make relock) 520 (cd etc; $(MAKE) relock)
521 (cd lib-src; make relock) 521 (cd lib-src; $(MAKE) relock)
522 (cd lisp; make relock) 522 (cd lisp; $(MAKE) relock)
523 (cd lisp/term; chmod u+w README *.el) 523 (cd lisp/term; chmod u+w README *.el)
524 (cd man; chmod u+w *texi* ChangeLog split-man) 524 (cd man; chmod u+w *texi* ChangeLog split-man)
525 (cd oldXMenu; chmod u+w *.[ch] Makefile README) 525 (cd oldXMenu; chmod u+w *.[ch] Makefile README)
526 (cd src; make relock) 526 (cd src; $(MAKE) relock)
527 527
528TAGS tags: lib-src 528TAGS tags: lib-src
529 (cd ${srcdir}/src; \ 529 (cd ${srcdir}/src; \
@@ -536,6 +536,6 @@ dist:
536 cd ${srcdir}; make-dist 536 cd ${srcdir}; make-dist
537 537
538info: 538info:
539 (cd ${srcdir}/man; make ${MFLAGS} info) 539 (cd ${srcdir}/man; $(MAKE) ${MFLAGS} info)
540dvi: 540dvi:
541 (cd ${srcdir}/man; make ${MFLAGS} dvi) 541 (cd ${srcdir}/man; $(MAKE) ${MFLAGS} dvi)