1
0
mirror of https://github.com/richardghirst/PiBits.git synced 2025-02-21 15:54:15 +01:00

25 lines
591 B
Makefile

.PHONY: all install uninstall
all: servod
servod: servod.c
gcc -Wall -g -O2 -o servod servod.c
install: servod
[ "`id -u`" = "0" ] || { echo "Must be run as root"; exit 1; }
cp -f servod /usr/local/sbin
cp -f init-script /etc/init.d/servoblaster
update-rc.d servoblaster defaults 92 08
/etc/init.d/servoblaster start
uninstall:
[ "`id -u`" = "0" ] || { echo "Must be run as root"; exit 1; }
[ -e /etc/init.d/servoblaster ] && /etc/init.d/servoblaster stop || :
update-rc.d servoblaster remove
rm -f /usr/local/sbin/servod
rm -f /etc/init.d/servoblaster
clean:
rm -f servod