1 # $NetBSD: Makefile,v 1.24 2003/03/02 20:12:16 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 tr -d \\015 | \ 19 sed -f ${.CURDIR}/domains.sed > list ;\ 20 echo '# $$''NetBSD: $$' ; \ 21 echo '# ISO 3166 country codes, from http://www.iana.org/cctld/cctld-whois.htm' ; \ 22 cat top ; echo '#' ; cat list ; \ 23 ) > domains ; \ 24 rm -r /tmp/domains.$$$$ 25 26 .include <bsd.prog.mk> 27