Olaf Hering
ae16d541ad
OBS-URL: https://build.opensuse.org/package/show/devel:languages:ocaml/ocaml-dune?expand=0&rev=47
27 lines
955 B
Diff
27 lines
955 B
Diff
issue #2788
|
|
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -2,6 +2,8 @@ PREFIX_ARG := $(if $(PREFIX),--prefix $(
|
|
LIBDIR_ARG := $(if $(LIBDIR),--libdir $(LIBDIR),)
|
|
DESTDIR_ARG := $(if $(DESTDIR),--destdir $(DESTDIR),)
|
|
INSTALL_ARGS := $(PREFIX_ARG) $(LIBDIR_ARG) $(DESTDIR_ARG)
|
|
+VERBOSE_ARG := $(if $(VERBOSE),--verbose,)
|
|
+INSTALL_ARGS := $(PREFIX_ARG) $(LIBDIR_ARG) $(DESTDIR_ARG) $(VERBOSE_ARG)
|
|
BIN := ./dune.exe
|
|
|
|
# Dependencies used for developing and testing dune
|
|
@@ -39,6 +41,12 @@ install:
|
|
uninstall:
|
|
$(BIN) uninstall $(INSTALL_ARGS) dune
|
|
|
|
+release-with-libraries: release
|
|
+ $(BIN) build @install $(INSTALL_ARGS) --for-release-of-packages='dune,dune-action-plugin,dune-build-info,dune-configurator,dune-glob,dune-private-libs' --build-dir _olh
|
|
+
|
|
+install-with-libraries:
|
|
+ $(BIN) install $(INSTALL_ARGS) dune dune-action-plugin dune-build-info dune-configurator dune-glob dune-private-libs --build-dir _olh
|
|
+
|
|
reinstall: uninstall install
|
|
|
|
dev-switch:
|