litex/Makefile
Sebastien Bourdeauducq dfec152422 Build FPG file
2013-02-19 13:27:43 +01:00

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