From 12d992a6c4bc5561618997aa5b2527cc60a890f6 Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Fri, 24 Feb 2017 13:39:58 +0100 Subject: [PATCH] make: use git clean in distclean target This is the cleanest the repo will get. If you need to publish it, tar it or anything else like that use `make distclean`. License: MIT Signed-off-by: Jakub Sztandera --- Rules.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/Rules.mk b/Rules.mk index 72f8cf5ea..989d7be66 100644 --- a/Rules.mk +++ b/Rules.mk @@ -83,6 +83,7 @@ coverage: $(COVERAGE) distclean: clean rm -rf $(DISTCLEAN) + git clean -ffxd .PHONY: distclean test: $(TEST)