Skip to content

Commit

Permalink
Make install targets depend on vo files (#1741)
Browse files Browse the repository at this point in the history
This way the opam install target won't fail.
  • Loading branch information
JasonGross authored Nov 21, 2023
1 parent b91816a commit 1ccb465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,8 @@ clean::
cleanall:: clean
rm -rf src/Rewriter/PerfTesting/Specific/generated

install: coq
install-without-bedrock2: coq-without-bedrock2
install: coq $(filter %.vo,$(FILESTOINSTALL))
install-without-bedrock2: coq-without-bedrock2 $(filter %.vo,$(filter-out $(BEDROCK2_FILES_PATTERN),$(FILESTOINSTALL)))

install-without-bedrock2:
$(HIDE)$(MAKE) -f Makefile.coq install FILESTOINSTALL="$(filter-out $(BEDROCK2_FILES_PATTERN),$(FILESTOINSTALL))"
Expand Down

0 comments on commit 1ccb465

Please sign in to comment.