blob: 1d80201eb576481ae531660308310d373de39928 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
default: build
build:
echo "nothing to build"
install:
install -o root -g root -m 750 src/torouter_config.sh $(DESTDIR)/usr/bin
install -o root -g root -m 750 src/torouter_takeover.sh $(DESTDIR)/usr/bin
clean:
echo "nothing to clean"
deb:
dpkg-buildpackage -us -uc
|