summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2016-06-27 23:03:25 -0700
committerJohn Hawthorn <john.hawthorn@gmail.com>2016-07-10 13:03:25 -0700
commitc7ba610456dd0be5cf848c2c5e0354f561e9b52c (patch)
treeb9c577340b28fad0554af7e8ce128bf90a671830 /Makefile
parent7d3b5c1fd8a78936beaee22f87d675ebdf0239d2 (diff)
Add make veryclean
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 974aabd..cf7718d 100644
--- a/Makefile
+++ b/Makefile
@@ -47,4 +47,7 @@ fmt:
clean:
rm -f fzy test/fzytest src/*.o
-.PHONY: test check all clean install fmt
+veryclean: clean
+ rm -f config.h
+
+.PHONY: test check all clean veryclean install fmt