makefile: add debug target
This commit is contained in:
parent
676fed9e22
commit
a2fd88d2d4
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -25,6 +25,10 @@ aerc: $(GOSRC)
|
|||
aerc.conf: config/aerc.conf.in
|
||||
sed -e 's:@SHAREDIR@:$(SHAREDIR):g' > $@ < config/aerc.conf.in
|
||||
|
||||
debug: $(GOSRC)
|
||||
GOFLAGS="-tags=notmuch" \
|
||||
dlv debug --headless --listen localhost:4747 &>/dev/null
|
||||
|
||||
DOCS := \
|
||||
aerc.1 \
|
||||
aerc-search.1 \
|
||||
|
@ -109,4 +113,4 @@ uninstall:
|
|||
|
||||
.DEFAULT_GOAL := all
|
||||
|
||||
.PHONY: all doc clean install uninstall
|
||||
.PHONY: all doc clean install uninstall debug
|
||||
|
|
Loading…
Reference in a new issue