From 1ccb465d50544b9807b34faee31bb51447f12b8d Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Mon, 20 Nov 2023 16:38:45 -0800 Subject: [PATCH] Make install targets depend on vo files (#1741) This way the opam install target won't fail. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fe73a8288d..b3f0d6162a 100644 --- a/Makefile +++ b/Makefile @@ -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))"