summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOrangerot <purple@orangerot.dev>2025-05-10 17:19:05 +0200
committerOrangerot <purple@orangerot.dev>2025-05-10 17:19:05 +0200
commit62944b57a2a83a9c0f21aa6bffaf019fbe53ea4d (patch)
tree01c560db2fbc29b8b6fe5d55a775a9b658cdcaf0 /Makefile
Initial Commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
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
+