File tree Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Original file line number Diff line number Diff line change 11CONFIGURATION ?= debug
22
3- .PHONY : TestSuites/.build/ $( CONFIGURATION ) /PrimaryTests
4- TestSuites/.build/$(CONFIGURATION ) /PrimaryTests :
3+ FORCE :
4+ TestSuites/.build/$(CONFIGURATION ) /% : FORCE
55 swift build --package-path TestSuites \
6- --product PrimaryTests \
6+ --product $( notdir $@ ) \
77 --triple wasm32-unknown-wasi \
88 --configuration $(CONFIGURATION )
99
10- .PHONY : TestSuites/.build/$(CONFIGURATION ) /BenchmarkTests
11- TestSuites/.build/$(CONFIGURATION ) /BenchmarkTests :
12- swift build --package-path TestSuites \
13- --product BenchmarkTests \
14- --triple wasm32-unknown-wasi \
15- --configuration $(CONFIGURATION )
16-
17- dist/PrimaryTests.wasm : TestSuites/.build/$(CONFIGURATION ) /PrimaryTests
18- mkdir -p dist
19- cp $< $@
20-
21- dist/BenchmarkTests.wasm : TestSuites/.build/$(CONFIGURATION ) /BenchmarkTests
10+ dist/% .wasm : TestSuites/.build/$(CONFIGURATION ) /%
2211 mkdir -p dist
2312 cp $< $@
2413
You can’t perform that action at this time.
0 commit comments