Skip to content

Commit

Permalink
Makefile: add build-depsync target
Browse files Browse the repository at this point in the history
  • Loading branch information
roobre committed Oct 6, 2023
1 parent 6bf8353 commit a2b7f78
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit a2b7f78

Please sign in to comment.