diff options
| author | Paul Eggert | 2015-01-03 18:50:41 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-01-03 18:54:34 -0800 |
| commit | ccb2d93859f6c7e41c648cf3371e42ee265e3408 (patch) | |
| tree | a0d5e946d9be47da1c1547aacf4aabec988f8680 /src | |
| parent | 0d85a0c05e9676c57c0dcc140c6d0347bee611d1 (diff) | |
| download | emacs-ccb2d93859f6c7e41c648cf3371e42ee265e3408.tar.gz emacs-ccb2d93859f6c7e41c648cf3371e42ee265e3408.zip | |
Less 'make' chatter for lisp dir
* lisp/Makefile.in (THEFILE): Define to be 'no-such-file' by default,
to make it clearer that the caller must specify it.
(compile-onefile): Remove, replacing by ...
($(THEFILE)c): ... new rule. This lets us use AM_V_GEN here.
($(THEFILE)c, .el.elc, $(MH_E_DIR)/mh-loaddefs.el)
($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
Use AM_V_GEN to lessen 'make' chatter.
(.el.elc): Omit duplicate comment.
* src/Makefile.in (%.elc): Adjust to compile-onefile change in
../lisp/Makefile.in.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1629aa0298c..b503a40640f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2015-01-04 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2015-01-04 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Less 'make' chatter for lisp dir | ||
| 4 | * Makefile.in (%.elc): Adjust to compile-onefile change in | ||
| 5 | ../lisp/Makefile.in. | ||
| 6 | |||
| 3 | batch write-region no longer says "Wrote FOO" | 7 | batch write-region no longer says "Wrote FOO" |
| 4 | This cuts down on 'make' chatter a bit. | 8 | This cuts down on 'make' chatter a bit. |
| 5 | * fileio.c (Fwrite_region): | 9 | * fileio.c (Fwrite_region): |
diff --git a/src/Makefile.in b/src/Makefile.in index ee45846cfd4..a2754eadacd 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -636,7 +636,7 @@ tags: TAGS ../lisp/TAGS $(lwlibdir)/TAGS | |||
| 636 | ## bootstrap-emacs$(EXEEXT) as an order-only prerequisite. | 636 | ## bootstrap-emacs$(EXEEXT) as an order-only prerequisite. |
| 637 | 637 | ||
| 638 | %.elc: %.el | bootstrap-emacs$(EXEEXT) | 638 | %.elc: %.el | bootstrap-emacs$(EXEEXT) |
| 639 | @$(MAKE) -C ../lisp compile-onefile THEFILE=$< EMACS="$(bootstrap_exe)" | 639 | @$(MAKE) -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c |
| 640 | 640 | ||
| 641 | ## VCSWITNESS points to the file that holds info about the current checkout. | 641 | ## VCSWITNESS points to the file that holds info about the current checkout. |
| 642 | ## We use it as a heuristic to decide when to rebuild loaddefs.el. | 642 | ## We use it as a heuristic to decide when to rebuild loaddefs.el. |