2018-11-25 18:24:10 +00:00
|
|
|
.PHONY: clean all vis lint
|
2018-05-27 06:44:13 +00:00
|
|
|
|
2018-11-22 01:06:09 +00:00
|
|
|
EXTPKGS = binary,bytes,crypto,encoding,errors,flag,fmt,internal,io,log,net,os,path,runtime,time,strings,sync,syscall
|
2018-05-27 06:44:13 +00:00
|
|
|
EXE = $(notdir $(shell pwd))
|
|
|
|
|
|
|
|
all:
|
2019-06-21 05:44:19 +00:00
|
|
|
go build $(BUILDOPTS) .
|
2018-05-27 06:44:13 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
$(RM) $(EXE) $(EXE).exe
|
|
|
|
|
2018-11-22 01:06:09 +00:00
|
|
|
vis:
|
2019-01-10 07:35:34 +00:00
|
|
|
go-callvis -file hkexshd-vis -format png -ignore $(EXTPKGS) -group pkg,type .
|
|
|
|
../fixup-gv.sh hkexshd.go && cat hkexshd-vis.gv | dot -Tpng -ohkexshd-vis-fixedup.png
|
2018-11-22 01:06:09 +00:00
|
|
|
|
2018-11-25 18:24:10 +00:00
|
|
|
lint:
|
|
|
|
-gometalinter --deadline=60s | sort
|
|
|
|
|