mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Makefile: Add a disctclean target (simply calling clean)
We currently don't distribute anything that's not already in git, so there's no difference between these two targets, (but debhelper wants to be able to call distclean).
This commit is contained in:
parent
bd5987ce39
commit
53fa1ed0a8
1 changed files with 5 additions and 0 deletions
|
@ -138,6 +138,11 @@ DEPS := $(DEPS:%.cc=.deps/%.d)
|
|||
clean:
|
||||
rm -f $(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
|
||||
|
||||
notmuch_client_srcs = \
|
||||
$(notmuch_compat_srcs) \
|
||||
debugger.c \
|
||||
|
|
Loading…
Reference in a new issue