Skip to content

Commit

Permalink
Update vivado-yosys testfile
Browse files Browse the repository at this point in the history
Signed-off-by: Kamil Rakoczy <[email protected]>
  • Loading branch information
kamilrakoczy committed Dec 11, 2020
1 parent d25bd58 commit 54310df
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/test_vivado/yosys/test_vivado_yosys_0.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ TARGET := test_vivado_yosys_0

all: $(TARGET).edif


%.blif: yosys.tcl
yosys -l yosys.log -p "tcl $?"
%.json: yosys.tcl
yosys -l yosys.log -p "tcl $?"
%.edif: yosys.tcl
yosys -l yosys.log -p "tcl $?"
DEPENDENCIES := yosys.tcl
%.blif: ${DEPENDENCIES}
yosys -l yosys.log -p "tcl yosys.tcl"
%.json: ${DEPENDENCIES}
yosys -l yosys.log -p "tcl yosys.tcl"
%.edif: ${DEPENDENCIES}
yosys -l yosys.log -p "tcl yosys.tcl"

clean:
rm -f $(TARGET).blif $(TARGET).json $(TARGET).edif

0 comments on commit 54310df

Please sign in to comment.