From dea35043bdbe9a6ee7787df712127f519b72d35d Mon Sep 17 00:00:00 2001 From: Vladimir Zhelezov Date: Sat, 19 Dec 2020 08:11:55 +0100 Subject: [PATCH] Add phony clean-all build target A `make clean` before commit removes hledger-completion.bash and it is supposed to be in the repository. `make clean` removes build artifacts while keeping the latter. Do a `make clean-all` to purge everything. --- shell-completion/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell-completion/Makefile b/shell-completion/Makefile index 05f08df00..a84e9a28b 100644 --- a/shell-completion/Makefile +++ b/shell-completion/Makefile @@ -75,4 +75,7 @@ options-%.txt: .PHONY: clean clean: rm -f commands*.txt generic-options.txt options-*.txt + +.PHONY: clean-all +clean-all: clean rm -f hledger-completion.bash