diff options
author | Emilio Jesus Gallego Arias <e+git@x80.org> | 2017-03-09 01:09:50 +0100 |
---|---|---|
committer | Emilio Jesus Gallego Arias <e+git@x80.org> | 2017-03-10 16:23:07 +0100 |
commit | d201ccad094feda44a4d232de936df57c33f22f2 (patch) | |
tree | f0d99eae7e805377f79ec2a2d1b9b3b8a1a351a0 /Makefile.install | |
parent | ccb706774a8f9bf4f58f6899a58e6cc5117901a6 (diff) |
[META] [build] Install dlls to kernel/byterun
This makes the dll path consistent both in `-local` and non-local Coq install.
Diffstat (limited to 'Makefile.install')
-rw-r--r-- | Makefile.install | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.install b/Makefile.install index 4800ea0b9..bde035551 100644 --- a/Makefile.install +++ b/Makefile.install @@ -104,11 +104,12 @@ install-library: $(MKDIR) $(FULLCOQLIB) $(INSTALLSH) $(FULLCOQLIB) $(LIBFILES) $(PLUGINS) $(MKDIR) $(FULLCOQLIB)/user-contrib + $(MKDIR) $(FULLCOQLIB)/kernel/byterun ifndef CUSTOM - $(INSTALLLIB) $(DLLCOQRUN) $(FULLCOQLIB) + $(INSTALLLIB) $(DLLCOQRUN) $(FULLCOQLIB)/kernel/byterun endif ifeq ($(BEST),opt) - $(INSTALLLIB) $(LIBCOQRUN) $(FULLCOQLIB) + $(INSTALLLIB) $(LIBCOQRUN) $(FULLCOQLIB)/kernel/byterun $(INSTALLSH) $(FULLCOQLIB) $(PLUGINSOPT) endif # csdpcert is not meant to be directly called by the user; we install |