mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
build: delete the default .SUFFIXES
All implicit rules in notmuch Makefiles are "pattern rules"; Deleting the default suffixes (to support obsolete, old-fashioned "suffix rules") from make reduces the output of 'make -d' by 40 to 90 percent, helping e.g. debugging make problems.
This commit is contained in:
parent
ecbb29e8ce
commit
b54e2f4fb1
1 changed files with 2 additions and 0 deletions
|
@ -325,3 +325,5 @@ DISTCLEAN := $(DISTCLEAN) .first-build-message Makefile.config
|
|||
DEPS := $(SRCS:%.c=.deps/%.d)
|
||||
DEPS := $(DEPS:%.cc=.deps/%.d)
|
||||
-include $(DEPS)
|
||||
|
||||
.SUFFIXES: # Delete the default suffixes. Old-Fashioned Suffix Rules not used.
|
||||
|
|
Loading…
Reference in a new issue