riscv64_asm/02_hello/makefile

13 lines
149 B
Makefile

build:
@as -o output.out ./*.s
@ld -o output output.out
run:
$(MAKE) build
@./output $(EXEC)
$(MAKE) clear
clear:
@rm -rf ./*.out output