blob: fabac1c2a00e00a31511a968ef9beef514e7b224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
mtu1280d: mtu1280d.c
gcc -o mtu1280d mtu1280d.c -lnetfilter_queue
install: mtu1280d
/usr/bin/install -c mtu1280d /usr/sbin/
upstart: install
/usr/bin/install -c upstart/mtu1280d /etc/init/
init.d: install
/usr/bin/install -c init.d/mtu1280d /etc/init.d/
update-rc.d mtu1280d defaults
update-rc.d mtu1280d enable
remove:
@echo "Removing any previous installation (including startup scripts) of mtu1280d"
rm -fr /usr/sbin/mtu1280d /etc/init/mtu1280d /etc/init.d/mtu1280d
update-rc.d mtu1280d remove
|