You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
	
		
		
			
				
				
					
						
						
						
							|  | .PHONY: all release debug test install
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | all:
 | 
						
						
						
							|  | 	make test
 | 
						
						
						
							|  | 	make release
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | release:
 | 
						
						
						
							|  | 	cargo build --release --all-features
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | debug:
 | 
						
						
						
							|  | 	cargo build --all-features
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | clean:
 | 
						
						
						
							|  | 	cargo clean
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | test:
 | 
						
						
						
							|  | 	cargo test --all-features
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | install_user:
 | 
						
						
						
							|  | 	./install.sh
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | install:
 | 
						
						
						
							|  | 	./install.sh --system
 | 
						
						
						
							|  | 
 |