You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							27 lines
						
					
					
						
							830 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							27 lines
						
					
					
						
							830 B
						
					
					
				
								BINARY = weed
							 | 
						|
								
							 | 
						|
								SOURCE_DIR = .
							 | 
						|
								
							 | 
						|
								all: debug_mount
							 | 
						|
								
							 | 
						|
								.PHONY : clean debug_mount
							 | 
						|
								
							 | 
						|
								clean:
							 | 
						|
									go clean $(SOURCE_DIR)
							 | 
						|
									rm -f $(BINARY)
							 | 
						|
								
							 | 
						|
								debug_shell:
							 | 
						|
									go build -gcflags="all=-N -l"
							 | 
						|
									dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- shell
							 | 
						|
								
							 | 
						|
								debug_mount:
							 | 
						|
									go build -gcflags="all=-N -l"
							 | 
						|
									dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- mount -dir=~/tmp/mm
							 | 
						|
								
							 | 
						|
								debug_server:
							 | 
						|
									go build -gcflags="all=-N -l"
							 | 
						|
									dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- server -dir=/Volumes/mobile_disk/99 -filer -volume.port=8343 -s3 -volume.max=0
							 | 
						|
								
							 | 
						|
								debug_volume:
							 | 
						|
									go build -gcflags="all=-N -l"
							 | 
						|
									dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- volume -dir=/Volumes/mobile_disk/100 -port 8564 -max=30 -preStopSeconds=2
							 |