blob: b42d30a78b359c57f28f1c46c915c690a5ecb983 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
etc_SOURCES := icann-ca.pem \
config.cluster \
config.isp \
config.personal \
config.splitview \
root.hints
etc-install: $(DESTDIR)$(ETCDIR)
$(INSTALL) -m 0644 $(addprefix etc/,$(etc_SOURCES)) $(DESTDIR)$(ETCDIR)
etc: etc/root.hints
etc/root.hints:
wget -O $@ https://www.internic.net/domain/named.root
.PHONY: etc-install
|