wai.h

WASM Interpreter
git clone git://source.orangerot.dev:/wai.h.git
Log | Files | Refs | README | LICENSE

Makefile (263B)


      1 # SPDX-FileCopyrightText: 2025 orangerot <me@orangerot>
      2 #
      3 # SPDX-License-Identifier: GPL-3.0
      4 
      5 wai: wai.c
      6 	gcc -ggdb -Wall -Wextra -o wai wai.c
      7 
      8 # tests/factorial.wasm: tests/factorial.wat
      9 .PHONY: tests
     10 tests:
     11 	wat2wasm -o tests/factorial.wasm tests/factorial.wat