dockerfile: include entire wamr repo

This commit is contained in:
2026-01-24 20:09:12 +01:00
parent b018940c22
commit 70434f402d
2 changed files with 11 additions and 4 deletions

View File

@ -16,11 +16,13 @@ AOTS := $(WASMS:.wasm=.aot)
build-all: build-wasms build-aots
# Compile to wasm bytecode using wasi-sdk
build-wasms: $(WASMS)
%.wasm: %.c
$(CLANG) $(CFLAGS) $< -o $@
# Compile ahead-of-time module using wamrc
build-aots: $(AOTS)
%.aot: %.wasm