From 63dce1db9b27de2260e9115e6f4e0ff59fef447d Mon Sep 17 00:00:00 2001 From: Jakub Matys Date: Wed, 3 Oct 2018 12:45:33 +0200 Subject: [PATCH] Added makefile target to build all blockbook packages --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 69798c62..98d3959e 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,8 @@ deb-blockbook-%: .deb-image deb-%: .deb-image docker run -t --rm -e PACKAGER=$(PACKAGER) -e UPDATE_VENDOR=$(UPDATE_VENDOR) -v $(CURDIR):/src -v $(CURDIR)/build:/out $(DEB_IMAGE) /build/build-deb.sh all $* $(ARGS) +deb-blockbook-all: clean-deb $(addprefix deb-blockbook-, $(TARGETS)) + $(addprefix all-, $(TARGETS)): all-%: clean-deb build-images deb-% all: clean-deb build-images $(addprefix deb-, $(TARGETS))