Internals: Fix verilated.mk duplicate rule

This commit is contained in:
Wilson Snyder 2025-11-01 23:22:08 -04:00
parent e089817951
commit 1d69c18e33
1 changed files with 2 additions and 3 deletions

View File

@ -330,12 +330,11 @@ ifneq ($(findstring ccache-report,$(MAKECMDGOALS)),)
$(VK_CCACHE_REPORT): $(VK_OBJS) $(VK_CCACHE_REPORT): $(VK_OBJS)
$(VERILATOR_CCACHE_REPORT) -o $@ $(VK_CCACHE_LOGDIR) $(VERILATOR_CCACHE_REPORT) -o $@ $(VK_CCACHE_LOGDIR)
# ccache-report runs last
.PHONY: ccache-report .PHONY: ccache-report
ccache-report: $(VK_CCACHE_REPORT) ccache-report: $(VK_CCACHE_REPORT) $(VK_OTHER_GOALS)
@cat $< @cat $<
# ccache-report runs last
ccache-report: $(VK_OTHER_GOALS)
endif endif
###################################################################### ######################################################################