Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2020-01-31 09:21:21 +0300
committerGitHub <noreply@github.com>2020-01-31 09:21:21 +0300
commita6707bfeb9bf02b3f665889e0d564d78268ab35e (patch)
tree25fccc63505ac893398c2becad487ec6ff74b8d2
parent745c8ff20b2f183fd1d230a9fb203c0a13c8ca69 (diff)
[wasm] Remove .stamp-build-debug-sample, use the output file instead. (#18644)
-rw-r--r--sdks/wasm/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/sdks/wasm/Makefile b/sdks/wasm/Makefile
index 7c6b39a55d2..9621235ee61 100644
--- a/sdks/wasm/Makefile
+++ b/sdks/wasm/Makefile
@@ -366,9 +366,11 @@ Mono.Cecil.dll: $(TOP)/mcs/class/lib/wasm_tools/Mono.Cecil.dll
packager.exe: packager.cs Mono.Cecil.dll $(OPTIONS_CS) | build-native
$(CSC) $(CSC_FLAGS) /out:$@ /r:Mono.Cecil.dll packager.cs $(OPTIONS_CS) /r:$(API_REFS)/mscorlib.dll /r:$(API_REFS)/System.dll /r:$(API_REFS)/System.Core.dll
-.stamp-build-debug-sample: packager.exe $(WASM_FRAMEWORK)/.stamp-framework sample.dll debug.html runtime.js
+debug_sample/dotnet.js: packager.exe $(WASM_FRAMEWORK)/.stamp-framework sample.dll debug.html runtime.js
$(PACKAGER) --copy=always -debug -out=debug_sample --asset=debug.html sample.dll
- touch $@
+ touch $@
+
+build-debug-sample: debug_sample/dotnet.js
TEST_ASSEMBLIES = $(WASM_BCL_DIR)/nunitlite.dll $(WASM_BCL_DIR)/tests/wasm_corlib_test.dll $(WASM_BCL_DIR)/tests/wasm_System_test.dll $(WASM_BCL_DIR)/tests/wasm_System.Core_test.dll
@@ -597,8 +599,6 @@ build-aot-all: build
run-aot-all: build-aot-all
for suite in $(AOT_TEST_SUITES); do $(MAKE) run-aot-$$suite || exit 1; done
-build-debug-sample: .stamp-build-debug-sample
-
rebuild-debug-sample: clean-debug-sample build-debug-sample
build-debugger-test-app: .stamp-build-debugger-test-app