add standard makefile
This commit is contained in:
parent
16da51beea
commit
0e7396c977
18
Makefile
Normal file
18
Makefile
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
GOFILES=$(wildcard *.go)
|
||||||
|
PROG=simpbot
|
||||||
|
#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
|
||||||
|
|
||||||
|
$(PROG): $(GOFILES)
|
||||||
|
go build -ldflags "-X main.GitCommit=$(GIT_COMMIT)"
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f simpbot
|
||||||
|
|
||||||
|
install: $(SIMPBOT)
|
||||||
|
install -d $(DESTDIR)$(PREFIX)/bin
|
||||||
|
install -m 755 $(PROG) $(DESTDIR)$(PREFIX)/bin
|
||||||
|
|
Loading…
Reference in New Issue
Block a user