diff options
| author | Maxime Dénès | 2017-12-18 19:00:36 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-12-18 19:00:36 +0100 |
| commit | 62133e7aa410d6120279c10954d585a61301a2ea (patch) | |
| tree | 4ad3c94769c4844cb99a7375328a0e98fad68bcf /Makefile.install | |
| parent | 015c9549d15e236f653b528747c1c528eff26e3c (diff) | |
| parent | afd9f3621d5c8c12c8d52bd233c77a92bd3afe16 (diff) | |
Merge PR #6447: [make] More build fixes for static plugins and ocamlfind.
Diffstat (limited to 'Makefile.install')
| -rw-r--r-- | Makefile.install | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.install b/Makefile.install index 84aa11a5ee..9a7229d524 100644 --- a/Makefile.install +++ b/Makefile.install @@ -107,9 +107,10 @@ install-devfiles: $(MKDIR) $(FULLBINDIR) $(MKDIR) $(FULLCOQLIB) $(INSTALLSH) $(FULLCOQLIB) $(GRAMMARCMA) - $(INSTALLSH) $(FULLCOQLIB) $(INSTALLCMI) - $(INSTALLSH) $(FULLCOQLIB) $(INSTALLCMX) - $(INSTALLSH) $(FULLCOQLIB) $(PLUGINSCMO:.cmo=.o) + $(INSTALLSH) $(FULLCOQLIB) $(INSTALLCMI) # Regular CMI files + $(INSTALLSH) $(FULLCOQLIB) $(INSTALLCMX) # To avoid warning 58 "-opaque" + $(INSTALLSH) $(FULLCOQLIB) $(PLUGINSCMO:.cmo=.cmx) # For static linking of plugins + $(INSTALLSH) $(FULLCOQLIB) $(PLUGINSCMO:.cmo=.o) # For static linking of plugins $(INSTALLSH) $(FULLCOQLIB) $(TOOLS_HELPERS) ifeq ($(BEST),opt) $(INSTALLSH) $(FULLCOQLIB) $(LINKCMX) $(CORECMA:.cma=.a) $(STATICPLUGINS:.cma=.a) |
