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.
This commit is contained in:
Graham Edgecombe 2017-12-06 08:38:01 +00:00
parent b4e0e6ceb0
commit 3ed53406a0

View file

@ -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 $<