From 1cb0bf6303ca36b5d7e907ee6801c765053c3ab2 Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Wed, 11 May 2022 23:11:19 -0600 Subject: [PATCH] Add distclean Makefile target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2a0c760..49ebee8 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,9 @@ cover: dist: $(DZIL) build +distclean: clean + $(RM) -r cover_db + test: $(PROVE) -l $(if $(V),-vj1) @@ -36,4 +39,4 @@ smokers: |$(PERL) -pe 's/"//g' \ |build-perl-smokers file-kdbx -.PHONY: all bootstrap clean cover dist smoke smokers test +.PHONY: all bootstrap clean cover dist distclean smoke smokers test -- 2.43.0