auth/Makefile

28 lines
693 B
Makefile
Raw Normal View History

2022-03-25 19:02:05 +00:00
#!/usr/bin/make -f
SHELL = /bin/sh
2022-03-25 19:02:05 +00:00
#### Start of system configuration section. ####
2022-03-25 19:02:05 +00:00
srcdir = .
2022-03-25 19:02:05 +00:00
GO ?= go
GOFLAGS ?= -buildvcs=true
2023-03-16 16:36:00 +00:00
EXECUTABLE ?= auth
2022-03-25 19:02:05 +00:00
#### End of system configuration section. ####
2022-03-25 19:02:05 +00:00
.PHONY: all clean check help
all: main.go
$(GO) build -v $(GOFLAGS) -o $(EXECUTABLE)
2022-03-25 19:02:05 +00:00
clean: ## Delete all files in the current directory that are normally created by building the program
$(GO) clean
2022-03-25 19:02:05 +00:00
check: ## Perform self-tests
$(GO) test -v -cover -failfast -short -shuffle=on $(GOFLAGS) $(srcdir)/...
.PHONY: help
help: ## Display this help screen
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'