xref: /netbsd-src/lib/libc/time/tzcode2netbsd (revision f14316bcbc544b96a93e884bc5c2b15fd60e22ae)
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