diff --git a/Makefile b/Makefile index e0ec188..e0b80dc 100644 --- a/Makefile +++ b/Makefile @@ -15,11 +15,14 @@ help: ## clean: Removes any previously created build artifacts. clean: rm -f ./xk6 + rm -f ./xk6-depsync rm -f ./k6 ## build: Builds the 'xk6' binary. build: go build -work ./cmd/xk6 +build-depsync: + go build -work ./cmd/xk6-depsync/ ## format: Applies Go formatting to code. format: @@ -33,4 +36,4 @@ test: vendor: go mod vendor -.PHONY: build clean format help test vendor +.PHONY: build build-depsync clean format help test vendor