aboutsummaryrefslogtreecommitdiffstats
path: root/examples/hx8kboard/Makefile
blob: 58be46730efe4a84d37c9f86fc9a857ac106ff03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PROJ = example
PIN_DEF = hx8kboard.pcf
DEVICE = 8k

all: $(PROJ).bin

%.blif: %.v
	yosys -p 'synth_ice40 -top top -blif $@' $<

%.txt: $(PIN_DEF) %.blif
	arachne-pnr -d $(DEVICE) -o $@ -p $^

%.bin: %.txt
	icepack $< $@

prog:
	iceprog $(PROJ).bin

clean:
	rm -f *.blif *.txt *.bin

.PHONY: all prog clean