Skip to content

Commit

Permalink
Merge pull request HoTT#1492 from JasonGross/fix-deps
Browse files Browse the repository at this point in the history
Fix generation of library dep graphs
  • Loading branch information
Alizter authored Apr 28, 2021
2 parents 56b987b + ff8bfa4 commit f028cdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.coq.local
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ strict: strict-test strict-no-axiom hottlib hott-core hott-categories contrib
# The deps file, for graphs
HoTT.deps: $(ALL_VFILES)
$(SHOW)'COQDEP > $@'
$(HIDE)$(COQDEP) $(CMDLINE_COQLIBS) $(ALL_VFILES) | sed s'#\\#/#g' >$@
$(HIDE)$(COQDEP) $(COQLIBS) $(ALL_VFILES) | sed s'#\\#/#g' >$@

HoTTCore.deps: $(CORE_VFILES)
$(SHOW)'COQDEP > $@'
$(HIDE)$(COQDEP) $(CMDLINE_COQLIBS) $(CORE_VFILES) | sed s'#\\#/#g' >$@
$(HIDE)$(COQDEP) $(COQLIBS) $(CORE_VFILES) | sed s'#\\#/#g' >$@

# The HTML files
# We have a dummy file, to allow us to depend on the html files
Expand Down

0 comments on commit f028cdd

Please sign in to comment.