mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
cli: small cleanups
Add make cli to start the cli Only print changes once Notify of changed objects
This commit is contained in:
parent
3b0eec4bf8
commit
6af4f08c6e
3 changed files with 29 additions and 6 deletions
13
Makefile.in
13
Makefile.in
|
|
@ -7,24 +7,29 @@ install:
|
|||
clean:
|
||||
ninja-build -C build clean
|
||||
|
||||
run:
|
||||
run: all
|
||||
SPA_PLUGIN_DIR=build/spa/plugins \
|
||||
PIPEWIRE_MODULE_DIR=build \
|
||||
PIPEWIRE_CONFIG_FILE=build/src/daemon/pipewire.conf \
|
||||
build/src/daemon/pipewire
|
||||
|
||||
monitor:
|
||||
monitor: all
|
||||
SPA_PLUGIN_DIR=build/spa/plugins \
|
||||
PIPEWIRE_MODULE_DIR=build/src/modules/ \
|
||||
build/src/tools/pipewire-monitor
|
||||
|
||||
dist:
|
||||
cli: all
|
||||
SPA_PLUGIN_DIR=build/spa/plugins \
|
||||
PIPEWIRE_MODULE_DIR=build/src/modules/ \
|
||||
build/src/tools/pipewire-cli
|
||||
|
||||
dist: all
|
||||
git archive --prefix=pipewire-@VERSION@/ -o pipewire-@VERSION@.tar.gz @TAG@
|
||||
|
||||
rpm: dist
|
||||
rpmbuild -ta pipewire-@VERSION@.tar.gz
|
||||
|
||||
publish:
|
||||
publish: all
|
||||
git branch -D gh-pages 2>/dev/null || true && \
|
||||
git branch -D draft 2>/dev/null || true && \
|
||||
git checkout -b draft && \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue