mirror of https://gogs.blitter.com/RLabs/xs
				
				
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			442 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			442 B
		
	
	
	
		
			Makefile
		
	
	
	
.PHONY: clean all vis lint
 | 
						|
 | 
						|
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 -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
 | 
						|
 | 
						|
lint:
 | 
						|
	-gometalinter --deadline=60s | sort
 | 
						|
 |