diff options
| author | Richard M. Stallman | 1995-06-24 18:43:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-06-24 18:43:39 +0000 |
| commit | dffd6dac05dd6ade887645ca851821cb9f96d0ac (patch) | |
| tree | e74fc8a71513726f9d3ee65c2c94bdca0e0125ff | |
| parent | 5f98a1d819065593407e75bfbeec7c0e43908bde (diff) | |
| download | emacs-dffd6dac05dd6ade887645ca851821cb9f96d0ac.tar.gz emacs-dffd6dac05dd6ade887645ca851821cb9f96d0ac.zip | |
(mkdir): Use symbolic chmod.
(SUBDIR_MAKEFILES):
Add man/Makefile, so `make distclean' removes it.
(top_distclean): Add config.log to the list of files to be removed.
| -rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index a7cc80e36b2..b3a1ce8e1bc 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -186,7 +186,7 @@ EMACS = emacs | |||
| 186 | SUBDIR = lib-src src | 186 | SUBDIR = lib-src src |
| 187 | 187 | ||
| 188 | # The makefiles of the directories in $SUBDIR. | 188 | # The makefiles of the directories in $SUBDIR. |
| 189 | SUBDIR_MAKEFILES = lib-src/Makefile src/Makefile oldXMenu/Makefile lwlib/Makefile | 189 | SUBDIR_MAKEFILES = lib-src/Makefile man/Makefile src/Makefile oldXMenu/Makefile lwlib/Makefile |
| 190 | 190 | ||
| 191 | # Subdirectories to install, and where they'll go. | 191 | # Subdirectories to install, and where they'll go. |
| 192 | # lib-src's makefile knows how to install it, so we don't do that here. | 192 | # lib-src's makefile knows how to install it, so we don't do that here. |
| @@ -366,7 +366,7 @@ mkdir: FRC | |||
| 366 | $(srcdir)/mkinstalldirs ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \ | 366 | $(srcdir)/mkinstalldirs ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \ |
| 367 | ${bindir} ${datadir} ${docdir} ${libexecdir} \ | 367 | ${bindir} ${datadir} ${docdir} ${libexecdir} \ |
| 368 | `echo ${locallisppath} | sed 's/:/ /g'` | 368 | `echo ${locallisppath} | sed 's/:/ /g'` |
| 369 | -chmod 777 ${lockdir} | 369 | -chmod a+rwx ${lockdir} |
| 370 | 370 | ||
| 371 | ### Delete all the installed files that the `install' target would | 371 | ### Delete all the installed files that the `install' target would |
| 372 | ### create (but not the noninstalled files such as `make all' would | 372 | ### create (but not the noninstalled files such as `make all' would |
| @@ -436,7 +436,7 @@ clean: FRC | |||
| 436 | ### `make distclean' should leave only the files that were in the | 436 | ### `make distclean' should leave only the files that were in the |
| 437 | ### distribution. | 437 | ### distribution. |
| 438 | top_distclean=\ | 438 | top_distclean=\ |
| 439 | rm -f config.status config.cache ; \ | 439 | rm -f config.status config.cache config.log ; \ |
| 440 | rm -f Makefile ${SUBDIR_MAKEFILES} ; \ | 440 | rm -f Makefile ${SUBDIR_MAKEFILES} ; \ |
| 441 | (cd lock && rm -f *) | 441 | (cd lock && rm -f *) |
| 442 | distclean: FRC | 442 | distclean: FRC |