mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
build system: remove configure output in Make distclean.
Create a variable DISTCLEAN which contains a list of things to clean in the distclean target (in addition to running the clean target). The deleted comment seems to be false these days, since we do create files during configuration. Use "rm -rf" here as well in case we want to add directories to DISTCLEAN.
This commit is contained in:
parent
8a745d310f
commit
719897cdc3
1 changed files with 3 additions and 2 deletions
|
@ -267,10 +267,9 @@ quiet ?= $($(shell echo $1 | sed -e s'/ .*//'))
|
|||
clean:
|
||||
rm -rf $(CLEAN); rm -rf .deps
|
||||
|
||||
# We don't (yet) have any distributed files not in the upstream repository.
|
||||
# So distclean is currently identical to clean.
|
||||
.PHONY: distclean
|
||||
distclean: clean
|
||||
rm -rf $(DISTCLEAN)
|
||||
|
||||
notmuch_client_srcs = \
|
||||
command-line-arguments.c\
|
||||
|
@ -339,6 +338,8 @@ install-desktop:
|
|||
SRCS := $(SRCS) $(notmuch_client_srcs)
|
||||
CLEAN := $(CLEAN) notmuch notmuch-shared $(notmuch_client_modules) notmuch.elc
|
||||
|
||||
DISTCLEAN := $(DISTCLEAN) .first-build-message Makefile.config
|
||||
|
||||
DEPS := $(SRCS:%.c=.deps/%.d)
|
||||
DEPS := $(DEPS:%.cc=.deps/%.d)
|
||||
-include $(DEPS)
|
||||
|
|
Loading…
Reference in a new issue