File tree Expand file tree Collapse file tree 1 file changed +9
-17
lines changed Expand file tree Collapse file tree 1 file changed +9
-17
lines changed Original file line number Diff line number Diff line change 1
- clean :
2
- @# just delete specific directories instead of .builds so we don't
3
- @# have to re-fetch dependencies
4
- @rm -f .build/debug
5
- @rm -rf .build/* -apple-macosx/
6
- @rm -rf .build/* -unknown-linux/
7
- @rm -rf .build/* -unknown-linux-gnu/
8
-
9
- macos-5.5 : clean
1
+ macos-5.5 :
10
2
@echo
11
3
@echo === Building $@ ===
12
4
env DEVELOPER_DIR=/Applications/Xcode-13.2.1.app xcrun swift build
13
5
14
- macos-5.6 : clean
6
+ macos-5.6 :
15
7
@echo
16
8
@echo === Building $@ ===
17
9
env DEVELOPER_DIR=/Applications/Xcode-13.4.1.app xcrun swift build
18
10
19
- macos-5.7 : clean
11
+ macos-5.7 :
20
12
@echo
21
13
@echo === Building $@ ===
22
14
env DEVELOPER_DIR=/Applications/Xcode-14.2.0.app xcrun swift build
23
15
24
- linux-5.5 : clean
16
+ linux-5.5 :
25
17
@echo
26
18
@echo === Building $@ ===
27
19
docker run --rm -v " $( PWD) " :/host -w /host " swift:5.5-focal" swift build
28
20
29
- linux-5.6 : clean
21
+ linux-5.6 :
30
22
@echo
31
23
@echo === Building $@ ===
32
24
docker run --rm -v " $( PWD) " :/host -w /host " swift:5.6-focal" swift build
33
25
34
- linux-5.7 : clean
26
+ linux-5.7 :
35
27
@echo
36
28
@echo === Building $@ ===
37
29
docker run --rm -v " $( PWD) " :/host -w /host " swift:5.7-focal" swift build
38
30
39
- linux : clean \
31
+ linux : \
40
32
linux-5.5 \
41
33
linux-5.6 \
42
34
linux-5.7
43
35
44
- macos : clean \
36
+ macos : \
45
37
macos-5.5 \
46
38
macos-5.6 \
47
39
macos-5.7
48
40
49
- all : clean \
41
+ all : \
50
42
macos \
51
43
linux
You can’t perform that action at this time.
0 commit comments