mirror of
				https://source.quilibrium.com/quilibrium/ceremonyclient.git
				synced 2025-11-04 07:07:26 +00:00 
			
		
		
		
	
		
			
	
	
		
			11 lines
		
	
	
		
			161 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			161 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
								 | 
							
								PB = $(wildcard *.proto)
							 | 
						||
| 
								 | 
							
								GO = $(PB:.proto=.pb.go)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								all: $(GO)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								%.pb.go: %.proto
							 | 
						||
| 
								 | 
							
										protoc --go_out=paths=source_relative:. $<
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								clean:
							 | 
						||
| 
								 | 
							
										rm -f *.pb.go
							 | 
						||
| 
								 | 
							
										rm -f *.go
							 |