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