mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
16 lines
226 B
Makefile
16 lines
226 B
Makefile
all: build/top.bit build/top.fpg
|
|
|
|
build/top.bit build/top.bin:
|
|
./build.py
|
|
|
|
build/top.fpg: build/top.bin
|
|
make -C tools
|
|
tools/byteswap $< $@
|
|
|
|
load: build/top.bit
|
|
jtag -n load.jtag
|
|
|
|
clean:
|
|
rm -rf build/*
|
|
|
|
.PHONY: load clean
|