summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-08-29 10:58:16 -0400
committerrsiddharth <s@ricketyspace.net>2020-08-29 10:58:16 -0400
commit482f9c2b8124e0b973fa9c5013befdcec5cef7e6 (patch)
treea10cd98acaaaf16fae19afab7fd7dd280b09c06c /Makefile
parent6329155fd1f2998c88e07c57654bc88233cf2d36 (diff)
Makefile: add clean
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cb7e516..fd91059 100644
--- a/Makefile
+++ b/Makefile
@@ -6,3 +6,7 @@ build: fmt
fmt:
go fmt -x ${MOD} ${MOD}/challenge ${MOD}/enc
+clean:
+ go clean
+ rm -f *~ ./*/*~
+.PHONY: clean