aboutsummaryrefslogtreecommitdiffstats
path: root/examples/hx8kboard/Makefile
blob: bc47cf6ba9c5ea0717c757d3a97efcda6a35cd97 (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: $(PROJ).bin
	iceprog $<

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

.PHONY: all prog clean