bztsrc--bootboot/riscv64-icicle/Makefile

11 lines
154 B
Makefile

TARGET=../dist/bootboot.rv64
all: $(TARGET)
$(TARGET):
@dd if=/dev/zero of=$(TARGET) bs=8192 count=1 2>&1 >/dev/null || true
clean:
rm -f $(TARGET)