|  | @@ -6,51 +6,51 @@ export MKIT_DIR
 | 
	
		
			
			| 6 | 6 |  all: build
 | 
	
		
			
			| 7 | 7 |  
 | 
	
		
			
			| 8 | 8 |  build:
 | 
	
		
			
			| 9 |  | -	@$(MKIT_DIR)/make build
 | 
	
		
			
			|  | 9 | +	@"$(MKIT_DIR)"/make build
 | 
	
		
			
			| 10 | 10 |  
 | 
	
		
			
			| 11 | 11 |  manpages: build
 | 
	
		
			
			| 12 |  | -	@$(MKIT_DIR)/make build_manpages
 | 
	
		
			
			|  | 12 | +	@"$(MKIT_DIR)"/make build_manpages
 | 
	
		
			
			| 13 | 13 |  
 | 
	
		
			
			| 14 | 14 |  clean:
 | 
	
		
			
			| 15 |  | -	@$(MKIT_DIR)/make clean
 | 
	
		
			
			|  | 15 | +	@"$(MKIT_DIR)"/make clean
 | 
	
		
			
			| 16 | 16 |  
 | 
	
		
			
			| 17 | 17 |  debstuff: dist
 | 
	
		
			
			| 18 |  | -	@$(MKIT_DIR)/make debstuff
 | 
	
		
			
			|  | 18 | +	@"$(MKIT_DIR)"/make debstuff
 | 
	
		
			
			| 19 | 19 |  
 | 
	
		
			
			| 20 | 20 |  dist: clean
 | 
	
		
			
			| 21 |  | -	@$(MKIT_DIR)/make dist
 | 
	
		
			
			|  | 21 | +	@"$(MKIT_DIR)"/make dist
 | 
	
		
			
			| 22 | 22 |  
 | 
	
		
			
			| 23 | 23 |  rpmstuff: dist
 | 
	
		
			
			| 24 |  | -	@$(MKIT_DIR)/make rpmstuff
 | 
	
		
			
			|  | 24 | +	@"$(MKIT_DIR)"/make rpmstuff
 | 
	
		
			
			| 25 | 25 |  
 | 
	
		
			
			| 26 | 26 |  install: all
 | 
	
		
			
			| 27 |  | -	@$(MKIT_DIR)/make install
 | 
	
		
			
			|  | 27 | +	@"$(MKIT_DIR)"/make install
 | 
	
		
			
			| 28 | 28 |  
 | 
	
		
			
			| 29 | 29 |  release:
 | 
	
		
			
			| 30 |  | -	@$(MKIT_DIR)/make release
 | 
	
		
			
			|  | 30 | +	@"$(MKIT_DIR)"/make release
 | 
	
		
			
			| 31 | 31 |  
 | 
	
		
			
			| 32 | 32 |  release_x:
 | 
	
		
			
			| 33 |  | -	@$(MKIT_DIR)/make release_x
 | 
	
		
			
			|  | 33 | +	@"$(MKIT_DIR)"/make release_x
 | 
	
		
			
			| 34 | 34 |  
 | 
	
		
			
			| 35 | 35 |  release_y:
 | 
	
		
			
			| 36 |  | -	@$(MKIT_DIR)/make release_y
 | 
	
		
			
			|  | 36 | +	@"$(MKIT_DIR)"/make release_y
 | 
	
		
			
			| 37 | 37 |  
 | 
	
		
			
			| 38 | 38 |  release_z:
 | 
	
		
			
			| 39 |  | -	@$(MKIT_DIR)/make release_z
 | 
	
		
			
			|  | 39 | +	@"$(MKIT_DIR)"/make release_z
 | 
	
		
			
			| 40 | 40 |  
 | 
	
		
			
			| 41 | 41 |  uninstall:
 | 
	
		
			
			| 42 |  | -	@$(MKIT_DIR)/make uninstall
 | 
	
		
			
			|  | 42 | +	@"$(MKIT_DIR)"/make uninstall
 | 
	
		
			
			| 43 | 43 |  
 | 
	
		
			
			| 44 | 44 |  vbump:
 | 
	
		
			
			| 45 |  | -	@$(MKIT_DIR)/make vbump
 | 
	
		
			
			|  | 45 | +	@"$(MKIT_DIR)"/make vbump
 | 
	
		
			
			| 46 | 46 |  
 | 
	
		
			
			| 47 | 47 |  vbump_x:
 | 
	
		
			
			| 48 |  | -	@$(MKIT_DIR)/make vbump_x
 | 
	
		
			
			|  | 48 | +	@"$(MKIT_DIR)"/make vbump_x
 | 
	
		
			
			| 49 | 49 |  
 | 
	
		
			
			| 50 | 50 |  vbump_y:
 | 
	
		
			
			| 51 |  | -	@$(MKIT_DIR)/make vbump_y
 | 
	
		
			
			|  | 51 | +	@"$(MKIT_DIR)"/make vbump_y
 | 
	
		
			
			| 52 | 52 |  
 | 
	
		
			
			| 53 | 53 |  vbump_z:
 | 
	
		
			
			| 54 |  | -	@$(MKIT_DIR)/make vbump_z
 | 
	
		
			
			|  | 54 | +	@"$(MKIT_DIR)"/make vbump_z
 | 
	
		
			
			| 55 | 55 |  
 | 
	
		
			
			| 56 | 56 |  .PHONY: all clean dist rpmstuff install uninstall release release_x release_y release_z vbump vbump_x vbump_y vbump_z
 |