
.PHONY: all install uninstall
all:	servod

servod:	servod.c mailbox.c
	gcc -Wall -g -O2 -o servod servod.c mailbox.c -lm

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
	chmod 755 /etc/init.d/servoblaster
	update-rc.d servoblaster defaults 92 08

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

