mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +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 := $(SRCS:%.c=.deps/%.d)
|
||||||
DEPS := $(DEPS:%.cc=.deps/%.d)
|
DEPS := $(DEPS:%.cc=.deps/%.d)
|
||||||
-include $(DEPS)
|
-include $(DEPS)
|
||||||
|
|
||||||
|
.SUFFIXES: # Delete the default suffixes. Old-Fashioned Suffix Rules not used.
|
||||||
|
|
Loading…
Reference in a new issue