-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
62 lines (50 loc) · 1.16 KB
/
Makefile
File metadata and controls
62 lines (50 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# Makefile
#
.PHONY: all
all: hosts
hosts:
# [das@t:~/nixos]$ find ./ -name 'hosts.nix'
# ./hp/hp1/hosts.nix
# ./hp/hp0/hosts.nix
# ./hp/hp2/hosts.nix
# ./hp/hp5/hosts.nix
# ./modules/hosts.nix
# ./laptops/t/hosts.nix
cp ./modules/hosts.nix ./hp/hp0/hosts.nix
cp ./modules/hosts.nix ./hp/hp1/hosts.nix
cp ./modules/hosts.nix ./hp/hp2/hosts.nix
cp ./modules/hosts.nix ./hp/hp3/hosts.nix
cp ./modules/hosts.nix ./hp/hp4/hosts.nix
cp ./modules/hosts.nix ./hp/hp5/hosts.nix
cp ./modules/hosts.nix ./laptops/t/hosts.nix
cp ./modules/hosts.nix ./laptops/t14/hosts.nix
cp ./modules/hosts.nix ./arm/pi5-1-os/hosts.nix
cp ./modules/hosts.nix ./chromebox/chromebox3/hosts.nix
#all: hp0 hp1 hp2 hp3 hp4 hp5
hp0:
scp -C ./modules/* hp0:
scp -C ./scripts/* hp0:
scp -C ./hp0/* hp0:
hp1:
scp -C ./modules/* hp1:
scp -C ./scripts/* hp1:
scp -C ./hp1/* hp1:
hp2:
scp -C ./modules/* hp2:
scp -C ./scripts/* hp2:
scp -C ./hp2/* hp2:
hp3:
scp -C ./modules/* hp3:
scp -C ./scripts/* hp3:
scp -C ./hp3/* hp3:
hp4:
scp -C ./modules/* hp4:
scp -C ./scripts/* hp4:
scp -C ./hp4/* hp4:
hp5:
scp -C ./modules/* hp5:
scp -C ./scripts/* hp5:
scp -C ./hp5/* hp5:
#
# end