mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
6c6d0cbbb6
Signed-off-by: Russ Magee <rmagee@gmail.com>
14 lines
319 B
Makefile
14 lines
319 B
Makefile
.PHONY: clean all vis
|
|
|
|
EXTPKGS = binary,bytes,crypto,encoding,errors,flag,fmt,internal,io,log,net,os,path,runtime,time,strings,sync,syscall
|
|
EXE = $(notdir $(shell pwd))
|
|
|
|
all:
|
|
go build .
|
|
|
|
clean:
|
|
$(RM) $(EXE) $(EXE).exe
|
|
|
|
vis:
|
|
go-callvis -skipbrowser -png -svg -output hkexshd-vis -ignore $(EXTPKGS) -group pkg,type .
|
|
|