Alon Bar-Lev has uploaded a new change for review. Change subject: packaging: build: split all-dev out of install-dev ......................................................................
packaging: build: split all-dev out of install-dev enables build without installing using development build settings. Change-Id: I50039c8c8797b51be388cb4009d828c49d9ca139 Signed-off-by: Alon Bar-Lev <[email protected]> --- M Makefile M README.developer 2 files changed, 15 insertions(+), 9 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/33/15733/1 diff --git a/Makefile b/Makefile index a26ee2f..77ccd04 100644 --- a/Makefile +++ b/Makefile @@ -514,10 +514,19 @@ -Pgwtdev,gwt-admin,gwt-user \ gwt:debug -install-dev: +all-dev: [ "$(DEV_REBUILD)" != 0 ] && rm -f "$(BUILD_FILE)" || : rm -f $(GENERATED) $(MAKE) \ + all \ + EXTRA_BUILD_FLAGS="$(EXTRA_BUILD_FLAGS_DEV_GWT) $(EXTRA_BUILD_FLAGS_DEV)" \ + $(NULL) + +install-dev: \ + all-dev \ + $(NULL) + + $(MAKE) \ install \ EXTRA_BUILD_FLAGS="$(EXTRA_BUILD_FLAGS_DEV_GWT) $(EXTRA_BUILD_FLAGS_DEV)" \ PYTHON_DIR="$(PREFIX)$(PYTHON_SYS_DIR)" \ diff --git a/README.developer b/README.developer index 4ec6214..a3ad36c 100644 --- a/README.developer +++ b/README.developer @@ -73,14 +73,11 @@ BUILD TARGETS -clean - Clean project. - -install-dev - Install a development environment at PREFIX. - -dist - Create source tarball. +all Build project. +clean Clean project. +all-dev Build project for development. +install-dev Install a development environment at PREFIX. +dist Create source tarball out of git repository. BUILD CUSTOMIZATION -- To view, visit http://gerrit.ovirt.org/15733 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I50039c8c8797b51be388cb4009d828c49d9ca139 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
