Skip to content

Commit 02a807e

Browse files
committed
Fix Makefile
1 parent e2415cd commit 02a807e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ clean:
99
macos-5.5: clean
1010
@echo
1111
@echo === Building $@ ===
12-
env DEVELOPER_DIR=/Applications/Xcode_13.2.1.app xcrun swift build
12+
env DEVELOPER_DIR=/Applications/Xcode-13.2.1.app xcrun swift build
1313

1414
macos-5.6: clean
1515
@echo
1616
@echo === Building $@ ===
17-
env DEVELOPER_DIR=/Applications/Xcode_13.4.1.app xcrun swift build
17+
env DEVELOPER_DIR=/Applications/Xcode-13.4.1.app xcrun swift build
1818

1919
macos-5.7: clean
2020
@echo
2121
@echo === Building $@ ===
22-
env DEVELOPER_DIR=/Applications/Xcode_14.2.0.app xcrun swift build
22+
env DEVELOPER_DIR=/Applications/Xcode-14.2.0.app xcrun swift build
2323

2424
linux-5.5: clean
2525
@echo
@@ -36,16 +36,16 @@ linux-5.7: clean
3636
@echo === Building $@ ===
3737
docker run --rm -v "$(PWD)":/host -w /host "swift:5.7-focal" swift build
3838

39-
linux:
39+
linux: clean \
4040
linux-5.5 \
4141
linux-5.6 \
4242
linux-5.7
4343

44-
macos:
44+
macos: clean \
4545
macos-5.5 \
4646
macos-5.6 \
4747
macos-5.7
4848

49-
all:
49+
all: clean \
5050
macos \
5151
linux

0 commit comments

Comments
 (0)