31 lines
877 B
Makefile
31 lines
877 B
Makefile
# $NetBSD: Makefile,v 1.31 2007/09/29 15:40:31 hubertf Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/8/93
|
|
|
|
NOOBJ= # defined
|
|
|
|
FILES= NetBSD.el acronyms acronyms.comp 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.
|
|
DOMAIN_URL= http://www.iana.org/root-whois/index.html
|
|
update-domains:
|
|
( \
|
|
echo '# $$''NetBSD''$$' ; \
|
|
echo '# ISO 3166 country codes, from ${DOMAIN_URL}' ; \
|
|
echo '# Last update:' `date` ; \
|
|
echo '#' ; \
|
|
ftp -o - ${DOMAIN_URL} \
|
|
| sed -n -f ${.CURDIR}/domains.sed \
|
|
) > domains ; \
|
|
|
|
update-na.phone:
|
|
< /dev/null awk -f nanpa.awk > na.phone
|
|
|
|
.include <bsd.prog.mk>
|