mirror of
https://gitlab.com/bztsrc/bootboot.git
synced 2023-02-13 20:54:32 -05:00
10 lines
156 B
Makefile
10 lines
156 B
Makefile
TARGET=../dist/bootbootcb.rv64
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET):
|
|
@dd if=/dev/zero of=$(TARGET) bs=8192 count=1 2>&1 >/dev/null || true
|
|
|
|
clean:
|
|
rm -f $(TARGET)
|
|
|