xref: /netbsd-src/lib/libc/time/tzcode2netbsd (revision 46f5119e40af2e51998f686b2fdcc76b5488f7f3)
1#! /bin/sh
2
3#
4# $NetBSD: tzcode2netbsd,v 1.5 2004/05/27 20:33:31 kleink Exp $
5#
6# Convert an extracted tzcode distribution into the format suitable
7# for importing it into the NetBSD source tree.
8# Last updated for: tzcode2004a.
9#
10
11NOIMPORT="Makefile
12	date.1 date.1.txt date.c
13	gccdiffs
14	itca.jpg
15	logwtmp.c
16	newctime.3.txt
17	newstrftime.3 newstrftime.3.txt
18	newtzset.3.txt
19	time2posix.3.txt
20	tzfile.5.txt
21	tzselect.8.txt
22	usno1988 usno1989 usno1989a usno1995 usno1997 usno1998
23	zdump.8.txt
24	zic.8.txt"
25
26NEWTONORMAL="ctime.3
27	tzset.3"
28
29rm -f ${NOIMPORT}
30
31for f in ${NEWTONORMAL}; do
32	mv new${f} ${f};
33done
34