13 lines
258 B
Makefile
13 lines
258 B
Makefile
# 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
|
|
|