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:
parent
b4e0e6ceb0
commit
3ed53406a0
1 changed files with 2 additions and 2 deletions
4
Makefile
4
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 $<
|
||||
|
|
|
|||
Loading…
Reference in a new issue