mirror of
https://github.com/notherealmarco/coredns-deployment.git
synced 2025-05-05 12:32:34 +02:00
Debian improvements (#45)
* Copy man-pages from source - add corefile.5 * Dont redownload every time
This commit is contained in:
parent
60666ffcc1
commit
190c36e4f1
34 changed files with 20 additions and 3414 deletions
19
Makefile
19
Makefile
|
@ -1,10 +1,17 @@
|
|||
# Makefile for building packages for CoreDNS.
|
||||
|
||||
# Build the debian packages
|
||||
# ARCH can be and default to amd64 is not set.
|
||||
# ARCH := amd64 armhf arm64
|
||||
|
||||
ifeq ($(ARCH),)
|
||||
ARCH:=amd64
|
||||
endif
|
||||
|
||||
.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
|
||||
for a in $(ARCH); do \
|
||||
dpkg-buildpackage -us -uc -b --target-arch $$aa ;\
|
||||
done
|
||||
|
||||
debian-clean:
|
||||
rm *.tgz
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue