We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 122ca69 commit 407ef62Copy full SHA for 407ef62
IntegrationTests/Makefile
@@ -1,13 +1,13 @@
1
CONFIGURATION ?= debug
2
3
FORCE:
4
-TestSuites/.build/$(CONFIGURATION)/%: FORCE
+TestSuites/.build/$(CONFIGURATION)/%.wasm: FORCE
5
swift build --package-path TestSuites \
6
- --product $(notdir $@) \
+ --product $(basename $(notdir $@)) \
7
--triple wasm32-unknown-wasi \
8
--configuration $(CONFIGURATION)
9
10
-dist/%.wasm: TestSuites/.build/$(CONFIGURATION)/%
+dist/%.wasm: TestSuites/.build/$(CONFIGURATION)/%.wasm
11
mkdir -p dist
12
cp $< $@
13
0 commit comments