13 lines
		
	
	
		
			179 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			179 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: build
 | |
| build:
 | |
| 	go build -o protoc-gen-gotemplate .
 | |
| 
 | |
| .PHONY: install
 | |
| install:
 | |
| 	go install .
 | |
| 
 | |
| .PHONY: test
 | |
| test:	build
 | |
| 	cd examples/dummy && make
 | |
| 	cd examples/go-kit && make
 |