17 lines
188 B
Makefile
17 lines
188 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
|
|
|
|
test: hello
|
|
./hello
|
|
|