mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
16 lines
276 B
Makefile
16 lines
276 B
Makefile
|
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
|