litex/Makefile
2013-02-17 00:12:15 +01:00

12 lines
145 B
Makefile

all: build/top.bit
build/top.bit build/top.bin:
./build.py
load: build/top.bit
jtag -n load.jtag
clean:
rm -rf build/*
.PHONY: load clean