Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ endif
$(call allow-override,CC,$(CROSS_COMPILE)cc)
$(call allow-override,LD,$(CROSS_COMPILE)ld)

%:
@:

.PHONY: all
all: $(APPS)

Expand Down Expand Up @@ -112,7 +115,7 @@ format-md:

.PHONY: dlv
dlv:
chmod +x kyanos && dlv --headless --listen=:2345 --api-version=2 --check-go-version=false exec ./kyanos
chmod +x kyanos && dlv --headless --listen=:2345 --api-version=2 --check-go-version=false exec ./kyanos -- $(filter-out $@,$(MAKECMDGOALS))

.PHONY: kyanos-debug
kyanos-debug: $(GO_FILES)
Expand Down