diff options
| author | Paul Eggert | 2014-09-01 02:49:51 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-09-01 02:49:51 -0700 |
| commit | bc12381e609621f4f87a290a4b8abc9d826528df (patch) | |
| tree | b0506d9a6c7dc1873277027a7c02f59bd7ffba8d /src | |
| parent | 1564080f0b24551765d7068b9fc02f6e5a78fea3 (diff) | |
| download | emacs-bc12381e609621f4f87a290a4b8abc9d826528df.tar.gz emacs-bc12381e609621f4f87a290a4b8abc9d826528df.zip | |
--enable-silent-warnings now suppresses more chatter.
* INSTALL, etc/NEWS: Document this.
* lib-src/Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_CC, am__v_CC_)
(am__v_CC_0, am__v_CC_1, AM_V_CCLD, am__v_CCLD_, am__v_CCLD_0)
(am__v_CCLD_1): New macros, taken from Automake.
(regex.o, etags${EXEEXT}, ctags${EXEEXT}, ebrowse${EXEEXT})
(profile${EXEEXT}, make-docfile${EXEEXT}, movemail${EXEEXT})
(pop.o, emacsclient${EXEEXT}, emacsclientw${EXEEXT})
(emacsclientw${EXEEXT}, ntlib.o, hexl${EXEEXT})
(update-game-score${EXEEXT}): Use them.
* lwlib/Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_CC, am__v_CC_)
(am__v_CC_0, am__v_CC_1): New macros, taken from Automake.
(.c.o): Use them.
* oldXMenu/Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_CC, am__v_CC_)
(am__v_CC_0, am__v_CC_1): New macros, taken from Automake.
(.c.o): Use them.
* src/Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_CC, am__v_CC_)
(am__v_CC_0, am__v_CC_1, AM_V_CCLD, am__v_CCLD_, am__v_CCLD_0)
(am__v_CCLD_1): New macros, taken from Automake.
(.c.o, .m.o, temacs$(EXEEXT)): Use them.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/Makefile.in | 19 |
2 files changed, 22 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0bf0842690b..35f0ba03f21 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2014-09-01 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2014-09-01 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | --enable-silent-warnings now suppresses more chatter. | ||
| 4 | * Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_CC, am__v_CC_) | ||
| 5 | (am__v_CC_0, am__v_CC_1, AM_V_CCLD, am__v_CCLD_, am__v_CCLD_0) | ||
| 6 | (am__v_CCLD_1): New macros, taken from Automake. | ||
| 7 | (.c.o, .m.o, temacs$(EXEEXT)): Use them. | ||
| 8 | |||
| 3 | Clean up extern decls a bit. | 9 | Clean up extern decls a bit. |
| 4 | * bytecode.c: Include blockinput.h and keyboard.h rather | 10 | * bytecode.c: Include blockinput.h and keyboard.h rather |
| 5 | than rolling their APIs by hand. | 11 | than rolling their APIs by hand. |
diff --git a/src/Makefile.in b/src/Makefile.in index 3f1192fe3ff..3fe1b1c83c2 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -304,6 +304,19 @@ UNEXEC_OBJ = @UNEXEC_OBJ@ | |||
| 304 | 304 | ||
| 305 | CANNOT_DUMP=@CANNOT_DUMP@ | 305 | CANNOT_DUMP=@CANNOT_DUMP@ |
| 306 | 306 | ||
| 307 | # 'make' verbosity. | ||
| 308 | AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ | ||
| 309 | |||
| 310 | AM_V_CC = $(am__v_CC_@AM_V@) | ||
| 311 | am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | ||
| 312 | am__v_CC_0 = @echo " CC " $@; | ||
| 313 | am__v_CC_1 = | ||
| 314 | |||
| 315 | AM_V_CCLD = $(am__v_CCLD_@AM_V@) | ||
| 316 | am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | ||
| 317 | am__v_CCLD_0 = @echo " CCLD " $@; | ||
| 318 | am__v_CCLD_1 = | ||
| 319 | |||
| 307 | DEPDIR=deps | 320 | DEPDIR=deps |
| 308 | ## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty. | 321 | ## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty. |
| 309 | DEPFLAGS=@DEPFLAGS@ | 322 | DEPFLAGS=@DEPFLAGS@ |
| @@ -334,10 +347,10 @@ ALL_OBJC_CFLAGS=$(ALL_CFLAGS) $(GNU_OBJC_CFLAGS) | |||
| 334 | .SUFFIXES: .m | 347 | .SUFFIXES: .m |
| 335 | .c.o: | 348 | .c.o: |
| 336 | @$(MKDEPDIR) | 349 | @$(MKDEPDIR) |
| 337 | $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $(PROFILING_CFLAGS) $< | 350 | $(AM_V_CC)$(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $(PROFILING_CFLAGS) $< |
| 338 | .m.o: | 351 | .m.o: |
| 339 | @$(MKDEPDIR) | 352 | @$(MKDEPDIR) |
| 340 | $(CC) -c $(CPPFLAGS) $(ALL_OBJC_CFLAGS) $(PROFILING_CFLAGS) $< | 353 | $(AM_V_CC)$(CC) -c $(CPPFLAGS) $(ALL_OBJC_CFLAGS) $(PROFILING_CFLAGS) $< |
| 341 | 354 | ||
| 342 | ## lastfile must follow all files whose initialized data areas should | 355 | ## lastfile must follow all files whose initialized data areas should |
| 343 | ## be dumped as pure by dump-emacs. | 356 | ## be dumped as pure by dump-emacs. |
| @@ -491,7 +504,7 @@ $(lib)/libgnu.a: $(config_h) | |||
| 491 | ## to start if Vinstallation_directory has the wrong value. | 504 | ## to start if Vinstallation_directory has the wrong value. |
| 492 | temacs$(EXEEXT): $(LIBXMENU) $(ALLOBJS) \ | 505 | temacs$(EXEEXT): $(LIBXMENU) $(ALLOBJS) \ |
| 493 | $(lib)/libgnu.a $(EMACSRES) | 506 | $(lib)/libgnu.a $(EMACSRES) |
| 494 | $(CC) $(ALL_CFLAGS) $(TEMACS_LDFLAGS) $(LDFLAGS) \ | 507 | $(AM_V_CCLD)$(CC) $(ALL_CFLAGS) $(TEMACS_LDFLAGS) $(LDFLAGS) \ |
| 495 | -o temacs $(ALLOBJS) $(lib)/libgnu.a $(W32_RES_LINK) $(LIBES) | 508 | -o temacs $(ALLOBJS) $(lib)/libgnu.a $(W32_RES_LINK) $(LIBES) |
| 496 | $(MKDIR_P) $(etc) | 509 | $(MKDIR_P) $(etc) |
| 497 | test "$(CANNOT_DUMP)" = "yes" || \ | 510 | test "$(CANNOT_DUMP)" = "yes" || \ |