load and start platform.uw8

This commit is contained in:
2023-03-29 23:28:12 +02:00
parent 976832c6e6
commit bd4e713a43
2 changed files with 72 additions and 18 deletions

View File

@@ -11,9 +11,12 @@ wasm3-test: main.o $(WASM3_O)
gcc -g -lm -o wasm3-test $^
wasm3/source/%.o: wasm3/source/%.c
gcc -g -c -o $@ $^
gcc -g -DDEBUG=1 -c -o $@ $^
main.o: main.c
gcc -g -c -o main.o main.c
gcc -g -DDEBUG=1 -c -o main.o main.c
clean:
rm wasm3-test main.o $(WASM3_O)
.PHONY: