From 3ed53406a0142d4b66ca2833b0376cc6c4417d8c Mon Sep 17 00:00:00 2001 From: Graham Edgecombe Date: Wed, 6 Dec 2017 08:38:01 +0000 Subject: [PATCH] Move timing closure requirement to the flash target It's possible that some tools interact with the bitstream directly rather than the .asc files, and we may still want to run them even if timing closure is not met. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fabff2c..e664e06 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ $(TIME_RPT): $(ASC_SYN) $(PCF) $(ASC): $(ASC_SYN) progmem_syn.hex progmem.hex icebram progmem_syn.hex progmem.hex < $< > $@ -$(BIN): $(ASC) $(TIME_RPT) +$(BIN): $(ASC) icepack $< $@ time: $(TIME_RPT) @@ -62,5 +62,5 @@ $(STAT): $(ASC_SYN) stat: $(STAT) cat $< -flash: $(BIN) +flash: $(BIN) $(TIME_RPT) iceprog -S $<