summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-11-08 12:00:06 -0500
committerrsiddharth <s@ricketyspace.net>2020-11-08 12:00:06 -0500
commit05ba9db49a6b99fea4ffb42c1f97a91a516460c3 (patch)
tree095948746fe85806e130349bc4312fc924915735 /Makefile
parent22fdf192dd524379bc4f45f0e10c01a72f577906 (diff)
Makefile: 'build' and 'fmt' are phony
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 696d8c7..cd6490a 100644
--- a/Makefile
+++ b/Makefile
@@ -2,9 +2,11 @@ MOD=ricketyspace.net/cryptopals
build: fmt
go build
+.PHONY: build
fmt:
go fmt ${MOD} ${MOD}/challenge ${MOD}/lib
+.PHONY: fmt
clean:
go clean