]> www.wagner.pp.ru Git - oss/btcli.git/blob - btpasskey/Makefile
Initial import
[oss/btcli.git] / btpasskey / Makefile
1 # this Makefile is for building btcli it depends on pkg-config libdbus-1-dev (and build-essential) packages 
2 btpasskey: btpasskey.c
3         $(CC) `pkg-config --libs --cflags dbus-1`  -g -DDBUS_API_SUBJECT_TO_CHANGE -DVERSION="\"1.1\"" -o btpasskey btpasskey.c 
4
5 install: btpasskey
6         install -m 755 -o root btpasskey /usr/bin 
7         install -m 644 -o root btpasskey.1 /usr/share/man/man1
8