Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
yashton committed May 26, 2021
1 parent 31caac3 commit 8026ed7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions benchmarks/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ reports: ${REPORTS}
timing: ${TIMING}

clean: clean_reports
rm -f ${AIG_FILES} ${AIG_LOGS} ${SYNTH_BASE} ${SYNTH_BASE_LOGS} ${SYNTH_OUTPUTS} ${SYNTH_LOGS} ${TECHMAP_OUTPUTS} ${TIMING} ${SDC_SCRIPTS}
rm -f ${AIG_FILES} ${AIG_LOGS} ${SYNTH_BASE} ${SYNTH_BASE_LOGS} ${SYNTH_OUTPUTS} ${SYNTH_LOGS} ${TECHMAP_OUTPUTS} ${TIMING} ${SDC_SCRIPTS} ${TECHMAP_LOGS}

clean_reports:
rm -f ${SYNTH_REPORTS} ${TIMING_REPORTS} ${REPORTS} ${EVERYTHING_REPORTS} everything.tsv everything.png
Expand Down Expand Up @@ -104,7 +104,13 @@ clean_reports:
${YOSYS} -Q -p 'read_rtlil $<; select o:* -list' | sed -e '/^top/!d' -e 's/top\///' >> $@
echo "}" >> $@

%_lsoracle.sdc %_abc.sdc %_unoptimized.sdc: %.sdc
%_lsoracle.sdc: %.sdc
cp $< $@

%_abc.sdc: %.sdc
cp $< $@

%_unoptimized.sdc: %.sdc
cp $< $@

%.sta.log: %.mapped.v %.sdc
Expand Down

0 comments on commit 8026ed7

Please sign in to comment.