diff options
author | Orangerot <purple@orangerot.dev> | 2025-05-10 17:19:05 +0200 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2025-05-10 17:19:05 +0200 |
commit | 62944b57a2a83a9c0f21aa6bffaf019fbe53ea4d (patch) | |
tree | 01c560db2fbc29b8b6fe5d55a775a9b658cdcaf0 /Makefile |
Initial Commit
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 + |