reliant/hello/Makefile
2026-01-04 22:05:24 -08:00

18 lines
204 B
Makefile

STRIP=riscv64-linux-gnu-strip
CC=riscv64-linux-musl-gcc
.FAKE: all clean test
all: hello
clean:
rm -f hello
hello: hello.c
$(CC) -static -O2 -o hello hello.c
$(STRIP) hello
test: hello
./hello