summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-08-04 14:36:11 -0400
committerKali Kaneko <kali@leap.se>2015-08-04 14:36:11 -0400
commit981c2a231384a67077061b29708e6feef49c78d8 (patch)
tree686aeeef573523f20020af1a9116aafebb8d00c0 /Makefile
parentf69c59b403326953d11e7c1ffbd4734b491063c0 (diff)
[pkg] add target to pull latest from all repos
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 86ca490e..7df6bbb1 100644
--- a/Makefile
+++ b/Makefile
@@ -44,6 +44,8 @@ LRELE = lrelease
#################################
# DO NOT EDIT FOLLOWING
+LEAP_REPOS = leap_pycommon keymanager leap_mail soledad
+
COMPILED_UI = $(UI_FILES:%.ui=$(COMPILED_DIR)/ui_%.py)
COMPILED_RESOURCES = $(RESOURCES:%.qrc=$(COMPILED_DIR)/%_rc.py)
@@ -58,7 +60,8 @@ ifndef RESOURCE_TIME
endif
CURDIR = $(shell pwd)
-#
+
+###########################################
all : resources ui
@@ -77,6 +80,7 @@ $(COMPILED_DIR)/ui_%.py : $(UI_DIR)/%.ui
$(COMPILED_DIR)/%_rc.py : $(RESOURCE_DIR)/%.qrc
$(PYRCC) $< -o $@
+
manpages:
rst2man docs/man/bitmask.1.rst docs/man/bitmask.1
@@ -127,8 +131,11 @@ install_base_deps:
for repo in leap_pycommon keymanager leap_mail soledad/common soledad/client; do cd $(CURDIR)/../$$repo && pkg/pip_install_requirements.sh; done
pkg/pip_install_requirements.sh
+pull_leapdeps:
+ for repo in $(LEAP_REPOS); do cd $(CURDIR)/../$$repo && git pull; done
+
checkout_leapdeps_develop:
- for repo in leap_pycommon keymanager leap_mail soledad; do cd $(CURDIR)/../$$repo && git checkout develop; done
+ for repo in $(LEAP_REPOS); do cd $(CURDIR)/../$$repo && git checkout develop; done
checkout_leapdeps_release:
pkg/scripts/checkout_leap_versions.sh