Deleted Added
full compact
Makefile (149653) Makefile (172476)
1# $FreeBSD: head/share/zoneinfo/Makefile 149653 2005-08-31 01:33:26Z wollman $
1# $FreeBSD: head/share/zoneinfo/Makefile 172476 2007-10-08 21:16:38Z edwin $
2
2
3#
4# HOW TO UPDATE THE ZONEINFO DATA
5#
6# In a clean directory, unpack the distribution archive and run:
7#
8# $ cvs -d :ext:ncvs.freebsd.org:/home/ncvs import -b 1.1.2 \
9# src/share/zoneinfo ADO tzdataYYYYt
10#
11# where YYYYt is the year and the version of the distribution, for
12# example 2004h.
13#
14# Then go to the checked out source, and merge the changes from the
15# previous tag to the new tag in the HEAD:
16#
17# $ cd ../src/share/zoneinfo
18# $ cvs update -jtzdataYYYYp -j tzdataYYYYt
19#
20# Update it again:
21#
22# $ cvs update
23#
24# And push it back into CVS:
25#
26# $ cvs ci
27#
28
3CLEANFILES+= yearistype
4
5.if defined(LEAPSECONDS)
6LEAPFILE= -L leapseconds
7.else
8LEAPFILE=
9.endif
10

--- 19 unchanged lines hidden ---
29CLEANFILES+= yearistype
30
31.if defined(LEAPSECONDS)
32LEAPFILE= -L leapseconds
33.else
34LEAPFILE=
35.endif
36

--- 19 unchanged lines hidden ---