pipewire/Makefile
Wim Taymans bc22c58435 module-spa: make separate monitor and node module
Make it possible to load monitors and nodes separately by specifying
the plugin and factory of the node/monitor to load.
Add argument parsing for properties and configure them in the node
when possible.
2017-06-19 15:49:13 +02:00

24 lines
473 B
Makefile

all:
ninja-build -C build
install:
ninja-build -C build install
clean:
ninja-build -C build clean
run:
SPA_PLUGIN_DIR=build/spa/plugins \
PIPEWIRE_MODULE_DIR=build \
PIPEWIRE_CONFIG_FILE=build/pipewire/daemon/pipewire.conf \
build/pipewire/daemon/pipewire
monitor:
SPA_PLUGIN_DIR=build/spa/plugins \
build/pipewire/tools/pipewire-monitor
dist:
git archive --prefix=pipewire-0.1.0/ -o pipewire-0.1.0.tar.gz HEAD
rpm: dist
rpmbuild -ta pipewire-0.1.0.tar.gz