1 # $NetBSD: Makefile,v 1.26 2003/03/03 01:14:33 jhawk Exp $ 2 # @(#)Makefile 8.1 (Berkeley) 6/8/93 3 4 NOOBJ= # defined 5 6 FILES= acronyms airport ascii birthtoken bsd-family-tree country domains \ 7 eqnchar flowers indent.pro inter.phone language man.template \ 8 mdoc.template na.phone operator style zipcodes 9 FILESDIR=${BINDIR}/misc 10 11 12 # According to iana (at] ISI.EDU, the URL below is the authoritative list 13 # distributed by the ISO 3166 Maintenance Agency. 14 update-domains: 15 ( \ 16 mkdir /tmp/domains.$$$$; cd /tmp/domains.$$$$ ; \ 17 ftp -o - http://www.iana.org/cctld/cctld-whois.htm | \ 18 sed -f ${.CURDIR}/domains.sed > list ;\ 19 echo '# $$''NetBSD: $$' ; \ 20 echo '# ISO 3166 country codes, from http://www.iana.org/cctld/cctld-whois.htm' ; \ 21 cat top ; echo '#' ; cat list ; \ 22 ) > domains ; \ 23 rm -r /tmp/domains.$$$$ 24 25 update-na.phone: 26 < /dev/null awk -f nanpa.awk > na.phone 27 28 .include <bsd.prog.mk> 29