]> git.notmuchmail.org Git - notmuch/commitdiff
Makefile: Add a disctclean target (simply calling clean)
authorCarl Worth <cworth@cworth.org>
Tue, 6 Apr 2010 21:18:05 +0000 (14:18 -0700)
committerCarl Worth <cworth@cworth.org>
Wed, 7 Apr 2010 01:30:43 +0000 (18:30 -0700)
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).

Makefile.local

index 1c3d5f5b6e9f435f7b02bb45f84f9752afdfaf41..bb5d6762c9b091251546a50bd9a9d6dd1536bf86 100644 (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              \