EngiBot/Makefile

15 lines
363 B
Makefile
Raw Normal View History

2022-07-01 17:08:04 -04:00
.PHONY: default debug run
2022-07-01 02:28:20 -04:00
GIT_COMMIT := $(shell git rev-parse HEAD)
BUILD_DATE := $(shell date -u +.%Y%m%d.%H%M%S)
CGO_ENABLED=0
default:
CGO_ENABLED=$(CGO_ENABLED) go build -o out/engibot -trimpath -ldflags "-s -w -X main.gitCommit=$(GIT_COMMIT)" .
2022-07-01 02:28:20 -04:00
debug:
go build -o out/ -ldflags "-X main.gitCommit=$(GIT_COMMIT)" main.go
run:
go run . --token $(TOKEN)