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

github.com/mono/reference-assemblies.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Pouncey <kjpou@pt.lu>2019-10-09 11:48:40 +0300
committerMarek Safar <marek.safar@gmail.com>2019-10-09 11:48:40 +0300
commita19ec73218bba17a316e5fd6a9cffd468560e4d2 (patch)
tree29b5b130685da211142a856a55cbef312e168f24 /Makefile
parent4e3d4446a3cf8ffc7225f7aa26a96ef9cde1233d (diff)
[wasm] Add `monowasm` build target to reference assemblies. (#19)
* Add `monowasm` build target to reference assemblies. * Cleanup unused reference. * Update the WebAssembly.Net.Http.extra.cs to match the actual method signature. * Remove System.Memory.dll * Remove System.Memory
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 07dc892..4055ea4 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,7 @@ all:
$(MAKE) -C mono
$(MAKE) -C build/monotouch
$(MAKE) -C build/monodroid
+ $(MAKE) -C build/monowasm
clean:
$(MAKE) -C v2.0 clean
@@ -33,5 +34,6 @@ clean:
$(MAKE) -C mono clean
$(MAKE) -C build/monotouch clean
$(MAKE) -C build/monodroid clean
+ $(MAKE) -C build/monowasm clean
.PHONY: all clean