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.
15 lines
276 B
15 lines
276 B
BINARY = weed
|
|
|
|
SOURCE_DIR = .
|
|
|
|
all: debug_mount
|
|
|
|
.PHONY : clean debug_mount
|
|
|
|
clean:
|
|
go clean $(SOURCE_DIR)
|
|
rm -f $(BINARY)
|
|
|
|
debug_mount:
|
|
go build -gcflags="all=-N -l"
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- mount -dir=~/tmp/mm
|