mirror of
https://github.com/notherealmarco/coredns-deployment.git
synced 2025-05-05 12:32:34 +02:00
10 lines
283 B
Makefile
10 lines
283 B
Makefile
# Makefile for building packages for CoreDNS.
|
|
|
|
# Build the debian packages
|
|
.PHONY: debian
|
|
debian:
|
|
dpkg-buildpackage -us -uc -b --target-arch amd64
|
|
dpkg-buildpackage -us -uc -b --target-arch armhf
|
|
dpkg-buildpackage -us -uc -b --target-arch arm64
|
|
# debs are one up
|
|
ls ../*.deb
|