blob: 0d99ee7024238cc2b9ca76be38a9d7073ac8d3f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.phony: update it all so install
all: select-target
it: so
so: it
/etc/tinc/retiolum/hosts:
cd $(dir $@) && git clone https://github.com/krebscode/hosts
update: /etc/tinc/retiolum/hosts
cd $< && git pull
install:
scripts/tinc_setup/install.sh
|