From: Carl Worth Date: Tue, 6 Apr 2010 21:18:05 +0000 (-0700) Subject: Makefile: Add a disctclean target (simply calling clean) X-Git-Tag: debian-0.1-1~10 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=53fa1ed0a89f2965e387e41509b998dad1e7ab82;ds=sidebyside 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). --- diff --git a/Makefile.local b/Makefile.local index 1c3d5f5b..bb5d6762 100644 --- a/Makefile.local +++ b/Makefile.local @@ -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 \