From 62944b57a2a83a9c0f21aa6bffaf019fbe53ea4d Mon Sep 17 00:00:00 2001 From: Orangerot Date: Sat, 10 May 2025 17:19:05 +0200 Subject: Initial Commit --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 +# +# 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 + -- cgit v1.2.3