Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix make
  • Loading branch information
pavelsavara committed Dec 22, 2021
commit 2338edc3f48cae889667f3a48ca6ef332bc4cbd8
4 changes: 2 additions & 2 deletions src/mono/sample/wasm/console-node-cjs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ifneq ($(V),)
DOTNET_MONO_LOG_LEVEL=--setenv=MONO_LOG_LEVEL=debug
endif

PROJECT_NAME=Wasm.Console.CJS.Sample.csproj
CONSOLE_DLL=Wasm.Console.CJS.Sample.dll
PROJECT_NAME=Wasm.Console.Node.CJS.Sample.csproj
CONSOLE_DLL=Wasm.Console.Node.CJS.Sample.dll

run: run-console
4 changes: 2 additions & 2 deletions src/mono/sample/wasm/console-node-es6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ifneq ($(V),)
DOTNET_MONO_LOG_LEVEL=--setenv=MONO_LOG_LEVEL=debug
endif

PROJECT_NAME=Wasm.Console.Sample.csproj
CONSOLE_DLL=Wasm.Console.Sample.dll
PROJECT_NAME=Wasm.Console.Node.ES6.Sample.csproj
CONSOLE_DLL=Wasm.Console.Node.ES6.Sample.dll

run: run-console
16 changes: 16 additions & 0 deletions src/mono/sample/wasm/console-v8-cjs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
TOP=../../../../..

include ../wasm.mk

ifneq ($(AOT),)
override MSBUILD_ARGS+=/p:RunAOTCompilation=true
endif

ifneq ($(V),)
DOTNET_MONO_LOG_LEVEL=--setenv=MONO_LOG_LEVEL=debug
endif

PROJECT_NAME=Wasm.Console.V8.CJS.Sample.csproj
CONSOLE_DLL=Wasm.Console.V8.CJS.Sample.dll

run: run-console
4 changes: 2 additions & 2 deletions src/mono/sample/wasm/console-v8-es6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ifneq ($(V),)
DOTNET_MONO_LOG_LEVEL=--setenv=MONO_LOG_LEVEL=debug
endif

PROJECT_NAME=Wasm.Console.Sample.csproj
CONSOLE_DLL=Wasm.Console.Sample.dll
PROJECT_NAME=Wasm.Console.V8.ES6.Sample.csproj
CONSOLE_DLL=Wasm.Console.V8.ES6.Sample.dll

run: run-console