blob: be5548f8f27f69c8b2695d598988fa6561d83426 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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_preboot.sh $(DESTDIR)/usr/bin
install -o root -g root -m 750 src/torouter_takeover.sh $(DESTDIR)/usr/bin
mkdir -p $(DESTDIR)/usr/share/torouter-prep
cp -ar configs/ $(DESTDIR)/usr/share/torouter-prep/example-configs/
clean:
echo "nothing to clean"
deb:
dpkg-buildpackage -us -uc
|