diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0a580f0 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# SPDX-FileCopyrightText: 2025 orangerot <me@orangerot> +# +# SPDX-License-Identifier: GPL-3.0 + +wai: wai.c + gcc -Wall -Wextra -o wai wai.c + +# tests/factorial.wasm: tests/factorial.wat +.PHONY: tests +tests: + wat2wasm -o tests/factorial.wasm tests/factorial.wat + |