mirror of
				https://github.com/pcvolkmer/docker-pps.git
				synced 2025-10-30 01:56:12 +00:00 
			
		
		
		
	Binary will be build in corresponding GOOS-GOARCH folder. Install command will build and install binary for current platform until GOOS and/or GOARCH env var is set.
		
			
				
	
	
		
			21 lines
		
	
	
		
			248 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			248 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ifndef VERBOSE
 | |
| .SILENT:
 | |
| endif
 | |
| 
 | |
| all: binary
 | |
| 
 | |
| .PHONY: fmt
 | |
| fmt:
 | |
| 	sh ./scripts/build.sh fmt
 | |
| 
 | |
| .PHONY: clean
 | |
| clean:
 | |
| 	sh ./scripts/build.sh clean
 | |
| 
 | |
| .PHONY: binary
 | |
| binary:
 | |
| 	sh ./scripts/build.sh build
 | |
| 
 | |
| .PHONY: install
 | |
| install:
 | |
| 	sh ./scripts/build.sh install
 |