aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-06 14:18:05 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-06 18:30:43 -0700
commit53fa1ed0a89f2965e387e41509b998dad1e7ab82 (patch)
tree68c3d9b15951ce3eb79c4c60a3de96a2fe616c94
parentbd5987ce39004d0a75a1758744f9a35710aaa1fd (diff)
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).
-rw-r--r--Makefile.local5
1 files changed, 5 insertions, 0 deletions
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 \