Makefile: add `--progress` to OPTS + add a `release` rule.

master
Philippe Pittoli 2024-03-17 23:05:50 +01:00
parent 56706e66f2
commit ffa4cd6b37
1 changed files with 5 additions and 2 deletions

View File

@ -11,7 +11,7 @@ endif
# No idea why, but I need that to run applications. Ignore that.
#LD_P ?= LD_PRELOAD=/usr/local/lib/libipc.so.0
OPTS ?=
OPTS ?= --progress
Q ?= @
@ -101,5 +101,8 @@ print-response-message-numbers:
print-response-messages-without-comments:
make -s print-response-messages | grep -vE '^[[:blank:]]+#'
rm-db:
wipe-db:
rm -r $(DBDIR)
release:
make build-server OPTS="--release --progress"