pipewire/Makefile.in

59 lines
1.3 KiB
Makefile
Raw Normal View History

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