From 0e8dbe021cc7599239c7889d3afd00b08c0dd93c Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Fri, 18 Oct 2024 13:57:15 -0700 Subject: [PATCH] install .v files alongside .vo files --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 15a2319dba..6c32e940cd 100644 --- a/Makefile +++ b/Makefile @@ -359,6 +359,7 @@ ifeq ($(INSTALL_COQDEV),true) set -e; \ install -d $(DESTDIR)$(COQDEVDIR)/$$d; \ install -m 0644 $$d/*.vo $(DESTDIR)$(COQDEVDIR)/$$d/; \ + install -m 0644 $$d/*.v $(DESTDIR)$(COQDEVDIR)/$$d/; \ if test -d $$d/.coq-native; then \ install -d $(DESTDIR)$(COQDEVDIR)/$$d/.coq-native; \ install -m 0644 $$d/.coq-native/* $(DESTDIR)$(COQDEVDIR)/$$d/.coq-native/; \