coredns-deployment/Makefile
Miek Gieben 6530a4f15a
debian: build all 3 ARCHs (#150)
Just build them all, and some typos fixed.

Signed-off-by: Miek Gieben <miek@miek.nl>
2019-04-14 11:02:57 +01:00

17 lines
293 B
Makefile

# Makefile for building packages for CoreDNS.
# ARCH can be and default to amd64 is not set.
ARCH := amd64 armhf arm64
ifeq ($(ARCH),)
ARCH:=amd64
endif
.PHONY: debian
debian:
for a in $(ARCH); do \
dpkg-buildpackage -us -uc -b --target-arch $$a ;\
done
debian-clean:
rm *.tgz