summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8629c5d6daf1504dce5d7c44cf67cb88b092444a (plain)
1
2
3
4
5
6
7
8
9
10
all: bootrun timeoutrun

install: all
	install -Dm755 bootrun /etc/rc.d/bootrun
	install -Dm755 timeoutrun /usr/lib/bootrun.timeoutrun

uninstall:
	rm -f /etc/rc.d/bootrun /usr/lib/bootrun.timeoutrun

.PHONY: install uninstall