Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d0f9649e5..8aa7ac0fd 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,15 @@ all: build
.PHONY: build
build: prepare-build
- cd $(BUILD_DIR) && $(MAKE) install INSTALL_DEST_DIR=$(CURDIR)
+ cd $(BUILD_DIR) && $(MAKE) install INSTALL_DEST_DIR=$(CURDIR)
+
+.PHONY: build-gitaly-remote
+build-gitaly-remote: prepare-build
+ cd $(BUILD_DIR) && $(MAKE) $@
+
+.PHONY: test-gitaly-remote
+test-gitaly-remote: prepare-build
+ cd $(BUILD_DIR) && $(MAKE) $@
.PHONY: install
install: prepare-build