Clone of file from sxmo project It handles audio routing when in a phone call
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
257 B

PREFIX = /usr/local
.PHONY: install
megiaudioroute: megiaudioroute.c
gcc -o megiaudioroute megiaudioroute.c -lX11
install: megiaudioroute
mkdir -p $(PREFIX)/bin
cp -f megiaudioroute $(PREFIX)/bin/megiaudioroute
chmod 755 $(PREFIX)/bin/megiaudioroute