LISP processor works now
[clump.git] / Makefile
index 9c85adf21b491fd8bc26dfe38af6fabf12ea3ba8..3ce34ed343030babed0436dca5aa09d4ca7e5da6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,19 +5,19 @@ DEVICE = hx1k
 all: $(PROJ).rpt $(PROJ).bin
 
 %.blif: %.v
-       yosys -p 'synth_ice40 -top top -blif $@' $<
+       tools/yosys/yosys -p 'synth_ice40 -top top -blif $@' $<
 
 %.asc: $(PIN_DEF) %.blif
-       arachne-pnr -d $(subst hx,,$(subst lp,,$(DEVICE))) -o $@ -p $^ -P tq144
+       tools/arachne-pnr/bin/arachne-pnr -d $(subst hx,,$(subst lp,,$(DEVICE))) -o $@ -p $^ -P tq144
 
 %.bin: %.asc
-       icepack $< $@
+       tools/icestorm/icepack/icepack $< $@
 
 %.rpt: %.asc
-       icetime -d $(DEVICE) -mtr $@ $<
+       tools/icestorm/icetime/icetime -d $(DEVICE) -mtr $@ $<
 
 prog: $(PROJ).bin
-       iceprog $<
+       tools/icestorm/iceprog/iceprog $<
 
 clean:
        rm -f $(PROJ).blif $(PROJ).asc $(PROJ).bin
This page took 0.009624 seconds and 4 git commands to generate.