LADI
/
spa
1
Fork 0
spa/Makefile.in

59 lines
1.2 KiB
Makefile
Raw Normal View History

2017-06-26 14:06:14 +03:00
all:
ninja -C build
2017-06-26 14:06:14 +03:00
install:
ninja -C build install
2017-06-26 14:06:14 +03:00
2018-10-31 12:42:57 +02:00
uninstall:
ninja -C build uninstall
2017-06-26 14:06:14 +03:00
clean:
ninja -C build clean
2017-06-26 14:06:14 +03:00
run: all
2017-06-26 14:06:14 +03:00
SPA_PLUGIN_DIR=build/spa/plugins \
PIPEWIRE_MODULE_DIR=build \
2017-07-11 16:57:20 +03:00
PIPEWIRE_CONFIG_FILE=build/src/daemon/pipewire.conf \
$(DBG) ./build/src/daemon/pipewire
gdb:
$(MAKE) run DBG=gdb
valgrind:
$(MAKE) run DBG="DISABLE_RTKIT=1 valgrind"
2017-06-26 14:06:14 +03:00
test: all
ninja -C build test
benchmark: all
ninja -C build benchmark
monitor: all
2017-06-26 14:06:14 +03:00
SPA_PLUGIN_DIR=build/spa/plugins \
2017-07-11 16:57:20 +03:00
PIPEWIRE_MODULE_DIR=build/src/modules/ \
build/src/tools/pipewire-monitor
2017-06-26 14:06:14 +03:00
cli: all
SPA_PLUGIN_DIR=build/spa/plugins \
PIPEWIRE_MODULE_DIR=build/src/modules/ \
build/src/tools/pipewire-cli
shell: all
ninja -C build uninstalled
dist: all
2017-06-26 14:06:14 +03:00
git archive --prefix=pipewire-@VERSION@/ -o pipewire-@VERSION@.tar.gz @TAG@
rpm: dist
rpmbuild -ta pipewire-@VERSION@.tar.gz
2017-09-05 10:42:02 +03:00
publish: all
2017-09-05 10:42:02 +03:00
git branch -D gh-pages 2>/dev/null || true && \
git branch -D draft 2>/dev/null || true && \
git checkout -b draft && \
git add -f build/doc/html && \
git commit -anm "Deploy on gh-pages" && \
git subtree split --prefix build/doc/html -b gh-pages && \
git push --force origin gh-pages:gh-pages && \
git checkout master 2>/dev/null