mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-06 20:32:06 -05:00
Bumps [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) from 10.17.0 to 10.18.0. - [Release notes](https://github.com/go-playground/validator/releases) - [Commits](https://github.com/go-playground/validator/compare/v10.17.0...v10.18.0) --- updated-dependencies: - dependency-name: github.com/go-playground/validator/v10 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
52 lines
865 B
Makefile
52 lines
865 B
Makefile
SHELL := /bin/bash
|
|
RAGEL := ragel
|
|
GOFMT := go fmt
|
|
|
|
export GO_TEST=env GOTRACEBACK=all go test $(GO_ARGS)
|
|
|
|
.PHONY: build
|
|
build: machine.go
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@rm -rf docs
|
|
@rm -f machine.go
|
|
|
|
.PHONY: images
|
|
images: docs/urn.png
|
|
|
|
.PHONY: snake2camel
|
|
snake2camel:
|
|
@cd ./tools/snake2camel; go build -o ../../snake2camel .
|
|
|
|
.PHONY: removecomments
|
|
removecomments:
|
|
@cd ./tools/removecomments; go build -o ../../removecomments .
|
|
|
|
machine.go: machine.go.rl
|
|
|
|
machine.go: snake2camel
|
|
|
|
machine.go: removecomments
|
|
|
|
machine.go:
|
|
$(RAGEL) -Z -G1 -e -o $@ $<
|
|
@./removecomments $@
|
|
@./snake2camel $@
|
|
$(GOFMT) $@
|
|
|
|
docs/urn.dot: machine.go.rl
|
|
@mkdir -p docs
|
|
$(RAGEL) -Z -e -Vp $< -o $@
|
|
|
|
docs/urn.png: docs/urn.dot
|
|
dot $< -Tpng -o $@
|
|
|
|
.PHONY: bench
|
|
bench: *_test.go machine.go
|
|
go test -bench=. -benchmem -benchtime=5s ./...
|
|
|
|
.PHONY: tests
|
|
tests: *_test.go
|
|
$(GO_TEST) ./...
|