Skip to content

Commit 2a69070

Browse files
committed
Makefile: specify .PHONY targets
Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
1 parent f1533d0 commit 2a69070

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ XK6_VERSION=1.3.5
66
VERSION ?= $(shell git describe --tags --match "v*" --abbrev=8 2>/dev/null | sed -r 's,^v([0-9]+\.[0-9]+)\.([0-9]+)(-.*)?$$,\1 \2 \3,' | while read mm patch suffix; do if [ -z "$$suffix" ]; then echo $$mm.$$patch; else patch=`expr $$patch + 1`; echo $$mm.$${patch}-pre$$suffix; fi; done)
77
LDFLAGS:=-s -w -X 'go.k6.io/k6/lib/consts.VersionDetails=xk6-neofs-$(VERSION)'
88

9+
.PHONY: build install_xk6 test lint format modernize
10+
911
# Build xk6-neofs binary
1012
build: install_xk6
1113
@echo "=> Building binary"

0 commit comments

Comments
 (0)