about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMarkus Wüstenberg2022-11-15 22:32:01 +0100
committerGitHub2022-11-15 22:32:01 +0100
commitc615204215c9321a4a2ef87479147473ddf83a3d (patch)
tree66377cc39a761af1f6c0047459a3f03580ae1131
parent868a525244f3c55ecb36df352865f4266dd41089 (diff)
downloadgomponents-c615204215c9321a4a2ef87479147473ddf83a3d.tar.lz
gomponents-c615204215c9321a4a2ef87479147473ddf83a3d.tar.zst
gomponents-c615204215c9321a4a2ef87479147473ddf83a3d.zip
Put .PHONY in front of each target in Makefile (#118)
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 94178dc..67a1e22 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,16 @@
-.PHONY: benchmark cover lint test
-
+.PHONY: benchmark
 benchmark:
 	go test -bench=.
 
+.PHONY: cover
 cover:
 	go tool cover -html=cover.out
 
+.PHONY: lint
 lint:
 	golangci-lint run
 
+.PHONY: test
 test:
 	go test -coverprofile=cover.out -shuffle on ./...