1
0
Fork 0
mirror of https://gitlab.com/bztsrc/bootboot.git synced 2023-02-13 20:54:32 -05:00
bztsrc--bootboot/riscv64-icicle/Makefile

11 lines
154 B
Makefile
Raw Normal View History

2021-01-17 21:39:37 -05:00
TARGET=../dist/bootboot.rv64
2021-01-17 21:26:37 -05:00
all: $(TARGET)
$(TARGET):
@dd if=/dev/zero of=$(TARGET) bs=8192 count=1 2>&1 >/dev/null || true
clean:
rm -f $(TARGET)