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:
Carl Worth 2010-04-06 14:18:05 -07:00
parent bd5987ce39
commit 53fa1ed0a8

View file

@ -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 \