diff options
author | rsiddharth <s@ricketyspace.net> | 2020-11-08 12:00:06 -0500 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2020-11-08 12:00:06 -0500 |
commit | 05ba9db49a6b99fea4ffb42c1f97a91a516460c3 (patch) | |
tree | 095948746fe85806e130349bc4312fc924915735 /Makefile | |
parent | 22fdf192dd524379bc4f45f0e10c01a72f577906 (diff) |
Makefile: 'build' and 'fmt' are phony
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |