25 lines
929 B
Makefile
25 lines
929 B
Makefile
# $NetBSD: Makefile,v 1.22 2001/12/12 01:49:17 tv Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/8/93
|
|
|
|
FILES= acronyms airport ascii birthtoken bsd-family-tree country domains \
|
|
eqnchar flowers indent.pro inter.phone language man.template \
|
|
mdoc.template na.phone operator style zipcodes
|
|
FILESDIR=${BINDIR}/misc
|
|
NOOBJ= # defined
|
|
|
|
|
|
# According to iana@ISI.EDU, the URL below is the authoritative list
|
|
# distributed by the ISO 3166 Maintenance Agency.
|
|
update-domains:
|
|
ftp -o /tmp/domains.$$$$ http://www.iana.org/country-codes.txt ; \
|
|
( \
|
|
echo '# $$NetBSD: Makefile,v 1.22 2001/12/12 01:49:17 tv Exp $$' ; \
|
|
echo '# ISO 3166 country codes, from http://www.iana.org/country-codes.txt' ; \
|
|
echo '# '`grep ^Latest /tmp/domains.$$$$` ; \
|
|
echo '#' ; \
|
|
perl -ane 'print lc(join(" ", $$F[$$#F-2], @F[0..$$#F-3])),"\n" if /^[A-Z]{2,}\s*.*\d{3}\s*$$/;' </tmp/domains.$$$$ \
|
|
) >domains ; \
|
|
rm /tmp/domains.$$$$
|
|
|
|
.include <bsd.prog.mk>
|