Makefile: add `--progress` to OPTS + add a `release` rule.
parent
56706e66f2
commit
ffa4cd6b37
7
Makefile
7
Makefile
|
@ -11,7 +11,7 @@ endif
|
||||||
# No idea why, but I need that to run applications. Ignore that.
|
# No idea why, but I need that to run applications. Ignore that.
|
||||||
#LD_P ?= LD_PRELOAD=/usr/local/lib/libipc.so.0
|
#LD_P ?= LD_PRELOAD=/usr/local/lib/libipc.so.0
|
||||||
|
|
||||||
OPTS ?=
|
OPTS ?= --progress
|
||||||
|
|
||||||
Q ?= @
|
Q ?= @
|
||||||
|
|
||||||
|
@ -101,5 +101,8 @@ print-response-message-numbers:
|
||||||
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:
|
wipe-db:
|
||||||
rm -r $(DBDIR)
|
rm -r $(DBDIR)
|
||||||
|
|
||||||
|
release:
|
||||||
|
make build-server OPTS="--release --progress"
|
||||||
|
|
Loading…
Reference in New Issue