Makefile: rm-db

master
Philippe Pittoli 2023-07-07 20:23:06 +02:00
parent 4fe6bd7c9e
commit 7d641b9168
1 changed files with 5 additions and 1 deletions

View File

@ -64,8 +64,9 @@ run-client-rr-del:
### SETUP COMMANDS
##################
DBDIR=/tmp/DATA-dnsmanagerd
run-dnsmanagerd:
$(Q)$(LD_P) ./bin/dnsmanagerd -v $(VERBOSITY) -r /tmp/DATA-dnsmanagerd
$(Q)$(LD_P) ./bin/dnsmanagerd -v $(VERBOSITY) -r $(DBDIR)
build-server:
$(Q)shards build dnsmanagerd
@ -87,3 +88,6 @@ print-response-message-numbers:
make -s print-response-messages | grep -E "^[0-9]" | sort -n
print-response-messages-without-comments:
make -s print-response-messages | grep -vE '^[[:blank:]]+#'
rm-db:
rm -r $(DBDIR)