actually add makefile

This commit is contained in:
stryan 2021-10-04 12:04:55 -04:00
parent 5396a5e44d
commit e090810f17
1 changed files with 14 additions and 0 deletions

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
#set variables
GIT_COMMIT := $(shell git rev-list -1 HEAD)
ifeq ($(PREFIX),) # PREFIX is environment variable, but if it is not set, then set default value
PREFIX := /usr/local
endif
all: tome_ws
tome_ws: $(wildcard *.go)
go build -ldflags "-X main.GitCommit=$(GIT_COMMIT)"
clean:
rm -f tome_ws