mirror of
				https://github.com/taigrr/wtf
				synced 2025-01-18 04:03:14 -08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			231 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			231 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: dependencies install run
 | |
| 
 | |
| build:
 | |
| 	go build -o bin/wtf
 | |
| 
 | |
| install:
 | |
| 	go clean
 | |
| 	go install -ldflags="-X main.version=$(shell git describe --always --abbrev=6) -X main.date=$(shell date +%FT%T%z)"
 | |
| 	which wtf
 | |
| 
 | |
| run: build
 | |
| 	bin/wtf
 |