mirror of
				https://github.com/therootcompany/telebit.git
				synced 2025-10-31 05:12:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			162 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			162 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: build clean default test
 | |
| 
 | |
| build: clean
 | |
| 	@go build -o machineid ./cmd/machineid/main.go
 | |
| 
 | |
| clean:
 | |
| 	@rm -rf ./machineid
 | |
| 
 | |
| test:
 | |
| 	go test ./...
 | |
| 
 | |
| default: build
 |