mirror of https://gogs.blitter.com/RLabs/xs
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			363 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			363 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:
 | 
						|
	go build $(BUILDOPTS) .
 | 
						|
 | 
						|
clean:
 | 
						|
	$(RM) $(EXE) $(EXE).exe
 | 
						|
 | 
						|
vis:
 | 
						|
	go-callvis -format png -file hkexpasswd-vis -ignore $(EXTPKGS) -group pkg,type .
 | 
						|
 | 
						|
lint:
 | 
						|
	-gometalinter --deadline=60s | sort
 |