mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
17 lines
316 B
Makefile
17 lines
316 B
Makefile
.PHONY: clean build test
|
|
|
|
build:
|
|
GOBIN=$(PWD)/build/bin go build -o $(PWD)/build/bin/prover-stats-api ./cmd
|
|
|
|
clean: ## Empty out the bin folder
|
|
@rm -rf build/bin
|
|
|
|
swag:
|
|
swag init -g ./cmd/main.go
|
|
|
|
test:
|
|
go test -v $(PWD)/...
|
|
|
|
lint: ## Lint the files - used for CI
|
|
GOBIN=$(PWD)/build/bin go run ../build/lint.go
|