mirror of
				https://gogs.blitter.com/RLabs/xs
				synced 2024-08-14 10:26:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: clean all lint
 | |
| 
 | |
| EXE = $(notdir $(shell pwd))
 | |
| 
 | |
| ifeq ($(GARBLE),y)
 | |
| GO=garble -literals -tiny -debugdir=garbled
 | |
| else
 | |
| GO = go
 | |
| endif
 | |
| 
 | |
| all:
 | |
| 	$(GO) build .
 | |
| 
 | |
| clean:
 | |
| 	$(RM) $(EXE) $(EXE).exe
 | |
| 
 | |
| lint:
 | |
| 	gometalinter --deadline 60s | sort
 |