aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Mortier <mort@cantab.net>2019-07-12 09:45:54 +0100
committerRichard Mortier <mort@cantab.net>2019-07-12 09:53:19 +0100
commit078182f0255d4e892bfa6361d2f23044af20262d (patch)
treeb71ef5694ba7e3611d083c5909efb8825b437e00
parentdd2960b32ac893458695130ab7250c6d0d2be897 (diff)
downloaddocker-abuild-078182f0255d4e892bfa6361d2f23044af20262d.tar.bz2
docker-abuild-078182f0255d4e892bfa6361d2f23044af20262d.tar.xz
Makefile: whitespace
Signed-off-by: Richard Mortier <mort@cantab.net>
-rw-r--r--Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b8ce802..16fbf5f 100644
--- a/Makefile
+++ b/Makefile
@@ -23,12 +23,18 @@ dabuild: dabuild.in
dabuild.in >| dabuild
chmod +x dabuild
-.drone.yml: .drone.jsonnet
- docker run --rm -v '$(shell pwd):/pwd' -w /pwd drone/cli jsonnet --format --stream --source '$<' --target '$@.tmp' && test -s '$@.tmp' && install '$@.tmp' '$@' ; _rc=$$?; $(RM) '$@.tmp' ; exit $$_rc
-
.PHONY: all
all: images dabuild
+.drone.yml: .drone.jsonnet
+ docker run --rm -v '$(shell pwd):/pwd' -w /pwd \
+ drone/cli jsonnet --format --stream --source '$<' --target '$@.tmp' \
+ && test -s '$@.tmp' \
+ && install '$@.tmp' '$@' \
+ ; _rc=$$? \
+ ; $(RM) '$@.tmp' \
+ ; exit $$_rc
+
.PHONY: images
images: $(patsubst %, build-%, $(RELEASES))