From 86fbde2de128b00964ec8a5646a51c2b62a2d6e1 Mon Sep 17 00:00:00 2001 From: Nikos Tsipinakis Date: Sun, 1 Jan 2017 17:08:10 +0200 Subject: [PATCH] Implement distclean target distclean target should restore the directory tree to the state it originally before make was invoked. In our case it means calling the clean target to remove the compiled blobs and removing the auto-generated config.h. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 4f5ae1e..8fec342 100644 --- a/Makefile +++ b/Makefile @@ -57,6 +57,11 @@ clean-doc: clean: clean-dunst clean-dunstify clean-doc test-clean +distclean: clean clean-config + +clean-config: + rm config.h + doc: docs/dunst.1 docs/dunst.1: docs/dunst.pod pod2man --name=dunst -c "Dunst Reference" --section=1 --release=${VERSION} $< > $@