Makefile: rm-db
This commit is contained in:
parent
4fe6bd7c9e
commit
7d641b9168
6
Makefile
6
Makefile
@ -64,8 +64,9 @@ run-client-rr-del:
|
|||||||
### SETUP COMMANDS
|
### SETUP COMMANDS
|
||||||
##################
|
##################
|
||||||
|
|
||||||
|
DBDIR=/tmp/DATA-dnsmanagerd
|
||||||
run-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:
|
build-server:
|
||||||
$(Q)shards build dnsmanagerd
|
$(Q)shards build dnsmanagerd
|
||||||
@ -87,3 +88,6 @@ print-response-message-numbers:
|
|||||||
make -s print-response-messages | grep -E "^[0-9]" | sort -n
|
make -s print-response-messages | grep -E "^[0-9]" | sort -n
|
||||||
print-response-messages-without-comments:
|
print-response-messages-without-comments:
|
||||||
make -s print-response-messages | grep -vE '^[[:blank:]]+#'
|
make -s print-response-messages | grep -vE '^[[:blank:]]+#'
|
||||||
|
|
||||||
|
rm-db:
|
||||||
|
rm -r $(DBDIR)
|
||||||
|
Loading…
Reference in New Issue
Block a user