mirror of https://gogs.blitter.com/RLabs/xs
				
				
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			475 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			475 B
		
	
	
	
		
			Makefile
		
	
	
	
.PHONY: clean all vis lint
 | 
						|
 | 
						|
EXTPKGS = bytes,errors,flag,fmt,internal,io,log,net,os,path,runtime,time,strings,sync,syscall,binary,encoding
 | 
						|
EXE = $(notdir $(shell pwd))
 | 
						|
 | 
						|
all:
 | 
						|
	echo "BUILDOPTS:" $(BUILDOPTS)
 | 
						|
	go build $(BUILDOPTS) .
 | 
						|
 | 
						|
clean:
 | 
						|
	$(RM) $(EXE) $(EXE).exe
 | 
						|
 | 
						|
vis:
 | 
						|
	go-callvis -file hkexsh-vis -format png -ignore $(EXTPKGS) -group pkg,type .
 | 
						|
	../fixup-gv.sh hkexsh.go && cat hkexsh-vis.gv | dot -Tpng -ohkexsh-vis-fixedup.png
 | 
						|
 | 
						|
lint:
 | 
						|
	-gometalinter --deadline=60s | sort
 |