blob: 8fbf69299721d798aae709c5ef9b48696d94e3f2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | 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
	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
 |