2082416e99
"State or Province" codes seen in US, Canadian, and a few other addresses. Eg, MT for Montana, ON for Ontario, etc. Includes all the "wierd" ones that many people don't know, like AA, GU, PW, etc. This information was compiled from a half dozen websites, as there didn't seem to be (before this) a good complete list. Discussed with christos, oster, david, and others.
29 lines
915 B
Makefile
29 lines
915 B
Makefile
# $NetBSD: Makefile,v 1.27 2003/03/26 15:57:54 tsarna Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/8/93
|
|
|
|
NOOBJ= # defined
|
|
|
|
FILES= acronyms airport ascii birthtoken bsd-family-tree country domains \
|
|
eqnchar flowers indent.pro inter.phone language man.template \
|
|
mdoc.template na.phone na.postal operator style zipcodes
|
|
FILESDIR=${BINDIR}/misc
|
|
|
|
|
|
# According to iana@ISI.EDU, the URL below is the authoritative list
|
|
# distributed by the ISO 3166 Maintenance Agency.
|
|
update-domains:
|
|
( \
|
|
mkdir /tmp/domains.$$$$; cd /tmp/domains.$$$$ ; \
|
|
ftp -o - http://www.iana.org/cctld/cctld-whois.htm | \
|
|
sed -f ${.CURDIR}/domains.sed > list ;\
|
|
echo '# $$''NetBSD: $$' ; \
|
|
echo '# ISO 3166 country codes, from http://www.iana.org/cctld/cctld-whois.htm' ; \
|
|
cat top ; echo '#' ; cat list ; \
|
|
) > domains ; \
|
|
rm -r /tmp/domains.$$$$
|
|
|
|
update-na.phone:
|
|
< /dev/null awk -f nanpa.awk > na.phone
|
|
|
|
.include <bsd.prog.mk>
|