riscv-utils/Makefile

19 lines
199 B
Makefile
Raw Normal View History

2023-04-16 17:38:46 +00:00
TARGET ?= riscv64-linux-gnu
AS = $(TARGET)-as
LD = $(TARGET)-ld
.SUFFIXES:
all: true false
#all: cat echo
%: %.o
$(LD) -o $@ $<
%.o: %.s
$(AS) -o $@ $<
2023-04-16 18:15:00 +00:00
.PHONY: test
test:
@BIN=. test/true.sh