Makefile revision 1.41 1 1.41 christos # Make and install tzdb code and data.
2 1.41 christos
3 1.1 mlelstv # This file is in the public domain, so clarified as of
4 1.1 mlelstv # 2009-05-17 by Arthur David Olson.
5 1.1 mlelstv
6 1.10 christos # Package name for the code distribution.
7 1.10 christos PACKAGE= tzcode
8 1.10 christos
9 1.34 christos # Version number for the distribution, overridden in the 'tarballs' rule below.
10 1.35 christos VERSION= unknown
11 1.9 christos
12 1.9 christos # Email address for bug reports.
13 1.9 christos BUGEMAIL= tz@iana.org
14 1.6 christos
15 1.40 christos # Choose source data features. To get new features right away, use:
16 1.40 christos # DATAFORM= vanguard
17 1.40 christos # To wait a while before using new features, to give downstream users
18 1.40 christos # time to upgrade zic (the default), use:
19 1.40 christos # DATAFORM= main
20 1.40 christos # To wait even longer for new features, use:
21 1.40 christos # DATAFORM= rearguard
22 1.40 christos DATAFORM= main
23 1.40 christos
24 1.41 christos # Change the line below for your timezone (after finding the one you want in
25 1.41 christos # one of the $(TDATA) source files, or adding it to a source file).
26 1.41 christos # Alternatively, if you discover you've got the wrong timezone, you can just
27 1.1 mlelstv # zic -l rightzone
28 1.1 mlelstv # to correct things.
29 1.1 mlelstv # Use the command
30 1.1 mlelstv # make zonenames
31 1.1 mlelstv # to get a list of the values you can use for LOCALTIME.
32 1.1 mlelstv
33 1.4 christos LOCALTIME= GMT
34 1.1 mlelstv
35 1.1 mlelstv # If you want something other than Eastern United States time as a template
36 1.41 christos # for handling POSIX-style timezone environment variables,
37 1.41 christos # change the line below (after finding the timezone you want in the
38 1.41 christos # one of the $(TDATA) source files, or adding it to a source file).
39 1.40 christos # When a POSIX-style environment variable is handled, the rules in the
40 1.1 mlelstv # template file are used to determine "spring forward" and "fall back" days and
41 1.15 christos # times; the environment variable itself specifies UT offsets of standard and
42 1.40 christos # daylight saving time.
43 1.41 christos # Alternatively, if you discover you've got the wrong timezone, you can just
44 1.1 mlelstv # zic -p rightzone
45 1.1 mlelstv # to correct things.
46 1.1 mlelstv # Use the command
47 1.1 mlelstv # make zonenames
48 1.1 mlelstv # to get a list of the values you can use for POSIXRULES.
49 1.1 mlelstv # If you want POSIX compatibility, use "America/New_York".
50 1.1 mlelstv
51 1.1 mlelstv POSIXRULES= America/New_York
52 1.1 mlelstv
53 1.1 mlelstv # Also see TZDEFRULESTRING below, which takes effect only
54 1.1 mlelstv # if the time zone files cannot be accessed.
55 1.1 mlelstv
56 1.1 mlelstv
57 1.39 christos # Installation locations.
58 1.39 christos #
59 1.39 christos # The defaults are suitable for Debian, except that if REDO is
60 1.39 christos # posix_right or right_posix then files that Debian puts under
61 1.39 christos # /usr/share/zoneinfo/posix and /usr/share/zoneinfo/right are instead
62 1.39 christos # put under /usr/share/zoneinfo-posix and /usr/share/zoneinfo-leaps,
63 1.39 christos # respectively. Problems with the Debian approach are discussed in
64 1.39 christos # the commentary for the right_posix rule (below).
65 1.39 christos
66 1.39 christos # Destination directory, which can be used for staging.
67 1.39 christos # 'make DESTDIR=/stage install' installs under /stage (e.g., to
68 1.39 christos # /stage/etc/localtime instead of to /etc/localtime). Files under
69 1.39 christos # /stage are not intended to work as-is, but can be copied by hand to
70 1.39 christos # the root directory later. If DESTDIR is empty, 'make install' does
71 1.39 christos # not stage, but installs directly into production locations.
72 1.39 christos DESTDIR =
73 1.39 christos
74 1.39 christos # Everything is installed into subdirectories of TOPDIR, and used there.
75 1.39 christos # TOPDIR should be empty (meaning the root directory),
76 1.39 christos # or a directory name that does not end in "/".
77 1.39 christos # TOPDIR should be empty or an absolute name unless you're just testing.
78 1.39 christos TOPDIR =
79 1.39 christos
80 1.41 christos # The default local timezone is taken from the file TZDEFAULT.
81 1.39 christos TZDEFAULT = $(TOPDIR)/etc/localtime
82 1.39 christos
83 1.39 christos # The subdirectory containing installed program and data files, and
84 1.39 christos # likewise for installed files that can be shared among architectures.
85 1.39 christos # These should be relative file names.
86 1.39 christos USRDIR = usr
87 1.39 christos USRSHAREDIR = $(USRDIR)/share
88 1.1 mlelstv
89 1.41 christos # "Compiled" timezone information is placed in the "TZDIR" directory
90 1.1 mlelstv # (and subdirectories).
91 1.38 christos # TZDIR_BASENAME should not contain "/" and should not be ".", ".." or empty.
92 1.15 christos TZDIR_BASENAME= zoneinfo
93 1.39 christos TZDIR = $(TOPDIR)/$(USRSHAREDIR)/$(TZDIR_BASENAME)
94 1.1 mlelstv
95 1.39 christos # The "tzselect" and (if you do "make INSTALL") "date" commands go in:
96 1.39 christos BINDIR = $(TOPDIR)/$(USRDIR)/bin
97 1.1 mlelstv
98 1.39 christos # The "zdump" command goes in:
99 1.39 christos ZDUMPDIR = $(BINDIR)
100 1.1 mlelstv
101 1.39 christos # The "zic" command goes in:
102 1.39 christos ZICDIR = $(TOPDIR)/$(USRDIR)/sbin
103 1.1 mlelstv
104 1.1 mlelstv # Manual pages go in subdirectories of. . .
105 1.39 christos MANDIR = $(TOPDIR)/$(USRSHAREDIR)/man
106 1.1 mlelstv
107 1.39 christos # Library functions are put in an archive in LIBDIR.
108 1.39 christos LIBDIR = $(TOPDIR)/$(USRDIR)/lib
109 1.1 mlelstv
110 1.1 mlelstv
111 1.41 christos # Types to try, as an alternative to time_t.
112 1.41 christos TIME_T_ALTERNATIVES = $(TIME_T_ALTERNATIVES_HEAD) $(TIME_T_ALTERNATIVES_TAIL)
113 1.41 christos TIME_T_ALTERNATIVES_HEAD = int64_t
114 1.41 christos TIME_T_ALTERNATIVES_TAIL = int32_t uint32_t uint64_t
115 1.1 mlelstv
116 1.41 christos # What kind of TZif data files to generate.
117 1.41 christos # (TZif is the binary time zone data format that zic generates.)
118 1.37 christos # If you want only POSIX time, with time values interpreted as
119 1.37 christos # seconds since the epoch (not counting leap seconds), use
120 1.1 mlelstv # REDO= posix_only
121 1.38 christos # below. If you want only "right" time, with values interpreted
122 1.37 christos # as seconds since the epoch (counting leap seconds), use
123 1.1 mlelstv # REDO= right_only
124 1.1 mlelstv # below. If you want both sets of data available, with leap seconds not
125 1.1 mlelstv # counted normally, use
126 1.1 mlelstv # REDO= posix_right
127 1.1 mlelstv # below. If you want both sets of data available, with leap seconds counted
128 1.1 mlelstv # normally, use
129 1.1 mlelstv # REDO= right_posix
130 1.32 christos # below. POSIX mandates that leap seconds not be counted; for compatibility
131 1.37 christos # with it, use "posix_only" or "posix_right". Use POSIX time on systems with
132 1.37 christos # leap smearing; this can work better than unsmeared "right" time with
133 1.37 christos # applications that are not leap second aware, and is closer to unsmeared
134 1.37 christos # "right" time than unsmeared POSIX time is (e.g., 0.5 vs 1.0 s max error).
135 1.1 mlelstv
136 1.1 mlelstv REDO= posix_right
137 1.1 mlelstv
138 1.41 christos # To install data in text form that has all the information of the TZif data,
139 1.38 christos # (optionally incorporating leap second information), use
140 1.38 christos # TZDATA_TEXT= tzdata.zi leapseconds
141 1.38 christos # To install text data without leap second information (e.g., because
142 1.38 christos # REDO='posix_only'), use
143 1.38 christos # TZDATA_TEXT= tzdata.zi
144 1.38 christos # To avoid installing text data, use
145 1.38 christos # TZDATA_TEXT=
146 1.38 christos
147 1.38 christos TZDATA_TEXT= leapseconds tzdata.zi
148 1.38 christos
149 1.38 christos # For backward-compatibility links for old zone names, use
150 1.39 christos # BACKWARD= backward
151 1.39 christos # If you also want the link US/Pacific-New, even though it is confusing
152 1.39 christos # and is planned to be removed from the database eventually, use
153 1.38 christos # BACKWARD= backward pacificnew
154 1.38 christos # To omit these links, use
155 1.38 christos # BACKWARD=
156 1.38 christos
157 1.39 christos BACKWARD= backward
158 1.38 christos
159 1.32 christos # If you want out-of-scope and often-wrong data from the file 'backzone', use
160 1.32 christos # PACKRATDATA= backzone
161 1.32 christos # To omit this data, use
162 1.32 christos # PACKRATDATA=
163 1.32 christos
164 1.32 christos PACKRATDATA=
165 1.32 christos
166 1.38 christos # The name of a locale using the UTF-8 encoding, used during self-tests.
167 1.38 christos # The tests are skipped if the name does not appear to work on this system.
168 1.38 christos
169 1.38 christos UTF8_LOCALE= en_US.utf8
170 1.38 christos
171 1.1 mlelstv # Since "." may not be in PATH...
172 1.1 mlelstv
173 1.1 mlelstv YEARISTYPE= ./yearistype
174 1.1 mlelstv
175 1.1 mlelstv # Non-default libraries needed to link.
176 1.1 mlelstv LDLIBS=
177 1.1 mlelstv
178 1.38 christos # Add the following to the end of the "CFLAGS=" line as needed to override
179 1.38 christos # defaults specified in the source code. "-DFOO" is equivalent to "-DFOO=1".
180 1.38 christos # -DDEPRECATE_TWO_DIGIT_YEARS for optional runtime warnings about strftime
181 1.38 christos # formats that generate only the last two digits of year numbers
182 1.38 christos # -DEPOCH_LOCAL if the 'time' function returns local time not UT
183 1.38 christos # -DEPOCH_OFFSET=N if the 'time' function returns a value N greater
184 1.38 christos # than what POSIX specifies, assuming local time is UT.
185 1.38 christos # For example, N is 252460800 on AmigaOS.
186 1.32 christos # -DHAVE_DECL_ASCTIME_R=0 if <time.h> does not declare asctime_r
187 1.38 christos # -DHAVE_DECL_ENVIRON if <unistd.h> declares 'environ'
188 1.32 christos # -DHAVE_DIRECT_H if mkdir needs <direct.h> (MS-Windows)
189 1.38 christos # -DHAVE_GENERIC=0 if _Generic does not work
190 1.38 christos # -DHAVE_GETTEXT if 'gettext' works (e.g., GNU/Linux, FreeBSD, Solaris)
191 1.38 christos # -DHAVE_INCOMPATIBLE_CTIME_R if your system's time.h declares
192 1.35 christos # ctime_r and asctime_r incompatibly with the POSIX standard
193 1.35 christos # (Solaris when _POSIX_PTHREAD_SEMANTICS is not defined).
194 1.38 christos # -DHAVE_INTTYPES_H if you have a non-C99 compiler with <inttypes.h>
195 1.16 christos # -DHAVE_LINK=0 if your system lacks a link function
196 1.23 christos # -DHAVE_LOCALTIME_R=0 if your system lacks a localtime_r function
197 1.23 christos # -DHAVE_LOCALTIME_RZ=0 if you do not want zdump to use localtime_rz
198 1.23 christos # localtime_rz can make zdump significantly faster, but is nonstandard.
199 1.32 christos # -DHAVE_POSIX_DECLS=0 if your system's include files do not declare
200 1.32 christos # functions like 'link' or variables like 'tzname' required by POSIX
201 1.38 christos # -DHAVE_SNPRINTF=0 if your system lacks the snprintf function
202 1.38 christos # -DHAVE_STDBOOL_H if you have a non-C99 compiler with <stdbool.h>
203 1.38 christos # -DHAVE_STDINT_H if you have a non-C99 compiler with <stdint.h>
204 1.38 christos # -DHAVE_STRFTIME_L if <time.h> declares locale_t and strftime_l
205 1.28 christos # -DHAVE_STRDUP=0 if your system lacks the strdup function
206 1.40 christos # -DHAVE_STRTOLL=0 if your system lacks the strtoll function
207 1.1 mlelstv # -DHAVE_SYMLINK=0 if your system lacks the symlink function
208 1.38 christos # -DHAVE_SYS_STAT_H=0 if your compiler lacks a <sys/stat.h>
209 1.38 christos # -DHAVE_SYS_WAIT_H=0 if your compiler lacks a <sys/wait.h>
210 1.23 christos # -DHAVE_TZSET=0 if your system lacks a tzset function
211 1.38 christos # -DHAVE_UNISTD_H=0 if your compiler lacks a <unistd.h>
212 1.38 christos # -Dlocale_t=XXX if your system uses XXX instead of locale_t
213 1.40 christos # -DRESERVE_STD_EXT_IDS if your platform reserves standard identifiers
214 1.40 christos # with external linkage, e.g., applications cannot define 'localtime'.
215 1.38 christos # -Dssize_t=long on hosts like MS-Windows that lack ssize_t
216 1.40 christos # -DSUPPRESS_TZDIR to not prepend TZDIR to file names; this has
217 1.40 christos # security implications and is not recommended for general use
218 1.38 christos # -DTHREAD_SAFE to make localtime.c thread-safe, as POSIX requires;
219 1.23 christos # not needed by the main-program tz code, which is single-threaded.
220 1.23 christos # Append other compiler flags as needed, e.g., -pthread on GNU/Linux.
221 1.14 christos # -Dtime_tz=\"T\" to use T as the time_t type, rather than the system time_t
222 1.38 christos # This is intended for internal use only; it mangles external names.
223 1.1 mlelstv # -DTZ_DOMAIN=\"foo\" to use "foo" for gettext domain name; default is "tz"
224 1.22 christos # -DTZ_DOMAINDIR=\"/path\" to use "/path" for gettext directory;
225 1.1 mlelstv # the default is system-supplied, typically "/usr/lib/locale"
226 1.14 christos # -DTZDEFRULESTRING=\",date/time,date/time\" to default to the specified
227 1.38 christos # DST transitions if the time zone files cannot be accessed
228 1.38 christos # -DUNINIT_TRAP if reading uninitialized storage can cause problems
229 1.23 christos # other than simply getting garbage data
230 1.23 christos # -DUSE_LTZ=0 to build zdump with the system time zone library
231 1.23 christos # Also set TZDOBJS=zdump.o and CHECK_TIME_T_ALTERNATIVES= below.
232 1.1 mlelstv # -DZIC_MAX_ABBR_LEN_WO_WARN=3
233 1.1 mlelstv # (or some other number) to set the maximum time zone abbreviation length
234 1.1 mlelstv # that zic will accept without a warning (the default is 6)
235 1.30 christos # $(GCC_DEBUG_FLAGS) if you are using recent GCC and want lots of checking
236 1.38 christos # Select instrumentation via "make GCC_INSTRUMENT='whatever'".
237 1.38 christos GCC_INSTRUMENT = \
238 1.38 christos -fsanitize=undefined -fsanitize-address-use-after-scope \
239 1.38 christos -fsanitize-undefined-trap-on-error -fstack-protector
240 1.38 christos GCC_DEBUG_FLAGS = -DGCC_LINT -g3 -O3 -fno-common \
241 1.38 christos $(GCC_INSTRUMENT) \
242 1.38 christos -Wall -Wextra \
243 1.38 christos -Walloc-size-larger-than=100000 -Warray-bounds=2 \
244 1.40 christos -Wbad-function-cast -Wcast-align=strict -Wdate-time \
245 1.38 christos -Wdeclaration-after-statement -Wdouble-promotion \
246 1.38 christos -Wformat=2 -Wformat-overflow=2 -Wformat-signedness -Wformat-truncation \
247 1.38 christos -Winit-self -Wjump-misses-init -Wlogical-op \
248 1.38 christos -Wmissing-declarations -Wmissing-prototypes -Wnested-externs \
249 1.38 christos -Wold-style-definition -Woverlength-strings -Wpointer-arith \
250 1.40 christos -Wshadow -Wshift-overflow=2 -Wstrict-prototypes -Wstringop-overflow=4 \
251 1.40 christos -Wstringop-truncation -Wsuggest-attribute=cold \
252 1.38 christos -Wsuggest-attribute=const -Wsuggest-attribute=format \
253 1.40 christos -Wsuggest-attribute=malloc \
254 1.38 christos -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure \
255 1.38 christos -Wtrampolines -Wundef -Wuninitialized -Wunused \
256 1.38 christos -Wvariadic-macros -Wvla -Wwrite-strings \
257 1.38 christos -Wno-address -Wno-format-nonliteral -Wno-sign-compare \
258 1.38 christos -Wno-type-limits -Wno-unused-parameter
259 1.1 mlelstv #
260 1.1 mlelstv # If your system has a "GMT offset" field in its "struct tm"s
261 1.1 mlelstv # (or if you decide to add such a field in your system's "time.h" file),
262 1.1 mlelstv # add the name to a define such as
263 1.1 mlelstv # -DTM_GMTOFF=tm_gmtoff
264 1.23 christos # to the end of the "CFLAGS=" line. If not defined, the code attempts to
265 1.23 christos # guess TM_GMTOFF from other macros; define NO_TM_GMTOFF to suppress this.
266 1.23 christos # Similarly, if your system has a "zone abbreviation" field, define
267 1.1 mlelstv # -DTM_ZONE=tm_zone
268 1.23 christos # and define NO_TM_ZONE to suppress any guessing. These two fields are not
269 1.23 christos # required by POSIX, but are widely available on GNU/Linux and BSD systems.
270 1.1 mlelstv #
271 1.38 christos # The next batch of options control support for external variables
272 1.38 christos # exported by tzcode. In practice these variables are less useful
273 1.38 christos # than TM_GMTOFF and TM_ZONE. However, most of them are standardized.
274 1.38 christos # #
275 1.38 christos # # To omit or support the external variable "tzname", add one of:
276 1.38 christos # # -DHAVE_TZNAME=0
277 1.38 christos # # -DHAVE_TZNAME=1
278 1.38 christos # # to the "CFLAGS=" line. "tzname" is required by POSIX 1988 and later.
279 1.38 christos # # If not defined, the code attempts to guess HAVE_TZNAME from other macros.
280 1.38 christos # # Warning: unless time_tz is also defined, HAVE_TZNAME=1 can cause
281 1.38 christos # # crashes when combined with some platforms' standard libraries,
282 1.38 christos # # presumably due to memory allocation issues.
283 1.38 christos # #
284 1.38 christos # # To omit or support the external variables "timezone" and "daylight", add
285 1.38 christos # # -DUSG_COMPAT=0
286 1.38 christos # # -DUSG_COMPAT=1
287 1.38 christos # # to the "CFLAGS=" line; "timezone" and "daylight" are inspired by
288 1.38 christos # # Unix Systems Group code and are required by POSIX 2008 (with XSI) and later.
289 1.38 christos # # If not defined, the code attempts to guess USG_COMPAT from other macros.
290 1.38 christos # #
291 1.38 christos # # To support the external variable "altzone", add
292 1.38 christos # # -DALTZONE
293 1.38 christos # # to the end of the "CFLAGS=" line; although "altzone" appeared in
294 1.38 christos # # System V Release 3.1 it has not been standardized.
295 1.38 christos #
296 1.1 mlelstv # If you want functions that were inspired by early versions of X3J11's work,
297 1.1 mlelstv # add
298 1.1 mlelstv # -DSTD_INSPIRED
299 1.1 mlelstv # to the end of the "CFLAGS=" line. This arranges for the functions
300 1.1 mlelstv # "tzsetwall", "offtime", "timelocal", "timegm", "timeoff",
301 1.1 mlelstv # "posix2time", and "time2posix" to be added to the time conversion library.
302 1.1 mlelstv # "tzsetwall" is like "tzset" except that it arranges for local wall clock
303 1.41 christos # time (rather than the timezone specified in the TZ environment variable)
304 1.1 mlelstv # to be used.
305 1.1 mlelstv # "offtime" is like "gmtime" except that it accepts a second (long) argument
306 1.1 mlelstv # that gives an offset to add to the time_t when converting it.
307 1.1 mlelstv # "timelocal" is equivalent to "mktime".
308 1.1 mlelstv # "timegm" is like "timelocal" except that it turns a struct tm into
309 1.15 christos # a time_t using UT (rather than local time as "timelocal" does).
310 1.1 mlelstv # "timeoff" is like "timegm" except that it accepts a second (long) argument
311 1.1 mlelstv # that gives an offset to use when converting to a time_t.
312 1.1 mlelstv # "posix2time" and "time2posix" are described in an included manual page.
313 1.1 mlelstv # X3J11's work does not describe any of these functions.
314 1.1 mlelstv # Sun has provided "tzsetwall", "timelocal", and "timegm" in SunOS 4.0.
315 1.1 mlelstv # These functions may well disappear in future releases of the time
316 1.1 mlelstv # conversion package.
317 1.1 mlelstv #
318 1.23 christos # If you don't want functions that were inspired by NetBSD, add
319 1.23 christos # -DNETBSD_INSPIRED=0
320 1.23 christos # to the end of the "CFLAGS=" line. Otherwise, the functions
321 1.23 christos # "localtime_rz", "mktime_z", "tzalloc", and "tzfree" are added to the
322 1.23 christos # time library, and if STD_INSPIRED is also defined the functions
323 1.23 christos # "posix2time_z" and "time2posix_z" are added as well.
324 1.23 christos # The functions ending in "_z" (or "_rz") are like their unsuffixed
325 1.23 christos # (or suffixed-by-"_r") counterparts, except with an extra first
326 1.41 christos # argument of opaque type timezone_t that specifies the timezone.
327 1.23 christos # "tzalloc" allocates a timezone_t value, and "tzfree" frees it.
328 1.23 christos #
329 1.1 mlelstv # If you want to allocate state structures in localtime, add
330 1.1 mlelstv # -DALL_STATE
331 1.1 mlelstv # to the end of the "CFLAGS=" line. Storage is obtained by calling malloc.
332 1.1 mlelstv #
333 1.1 mlelstv # NIST-PCTS:151-2, Version 1.4, (1993-12-03) is a test suite put
334 1.1 mlelstv # out by the National Institute of Standards and Technology
335 1.1 mlelstv # which claims to test C and Posix conformance. If you want to pass PCTS, add
336 1.1 mlelstv # -DPCTS
337 1.1 mlelstv # to the end of the "CFLAGS=" line.
338 1.1 mlelstv #
339 1.1 mlelstv # If you want strict compliance with XPG4 as of 1994-04-09, add
340 1.1 mlelstv # -DXPG4_1994_04_09
341 1.1 mlelstv # to the end of the "CFLAGS=" line. This causes "strftime" to always return
342 1.38 christos # 53 as a week number (rather than 52 or 53) for January days before
343 1.38 christos # January's first Monday when a "%V" format is used and January 1
344 1.1 mlelstv # falls on a Friday, Saturday, or Sunday.
345 1.1 mlelstv
346 1.1 mlelstv CFLAGS=
347 1.1 mlelstv
348 1.9 christos # Linker flags. Default to $(LFLAGS) for backwards compatibility
349 1.34 christos # to release 2012h and earlier.
350 1.9 christos
351 1.9 christos LDFLAGS= $(LFLAGS)
352 1.1 mlelstv
353 1.32 christos # For leap seconds, this Makefile uses LEAPSECONDS='-L leapseconds' in
354 1.32 christos # submake command lines. The default is no leap seconds.
355 1.32 christos
356 1.32 christos LEAPSECONDS=
357 1.32 christos
358 1.32 christos # The zic command and its arguments.
359 1.32 christos
360 1.1 mlelstv zic= ./zic
361 1.1 mlelstv ZIC= $(zic) $(ZFLAGS)
362 1.1 mlelstv
363 1.15 christos ZFLAGS=
364 1.15 christos
365 1.41 christos # How to use zic to install TZif files.
366 1.32 christos
367 1.39 christos ZIC_INSTALL= $(ZIC) -d '$(DESTDIR)$(TZDIR)' $(LEAPSECONDS)
368 1.32 christos
369 1.22 christos # The name of a Posix-compliant 'awk' on your system.
370 1.41 christos # Older 'mawk' versions, such as the 'mawk' in Ubuntu 16.04, might dump core;
371 1.41 christos # on Ubuntu you can work around this with
372 1.41 christos # AWK= gawk
373 1.9 christos AWK= awk
374 1.9 christos
375 1.16 christos # The full path name of a Posix-compliant shell, preferably one that supports
376 1.16 christos # the Korn shell's 'select' statement as an extension.
377 1.16 christos # These days, Bash is the most popular.
378 1.16 christos # It should be OK to set this to /bin/sh, on platforms where /bin/sh
379 1.16 christos # lacks 'select' or doesn't completely conform to Posix, but /bin/bash
380 1.16 christos # is typically nicer if it works.
381 1.9 christos KSHELL= /bin/bash
382 1.1 mlelstv
383 1.18 christos # The path where SGML DTDs are kept and the catalog file(s) to use when
384 1.34 christos # validating. The default should work on both Debian and Red Hat.
385 1.10 christos SGML_TOPDIR= /usr
386 1.9 christos SGML_DTDDIR= $(SGML_TOPDIR)/share/xml/w3c-sgml-lib/schema/dtd
387 1.9 christos SGML_SEARCH_PATH= $(SGML_DTDDIR)/REC-html401-19991224
388 1.18 christos SGML_CATALOG_FILES= \
389 1.34 christos $(SGML_TOPDIR)/share/doc/w3-recs/html/www.w3.org/TR/1999/REC-html401-19991224/HTML4.cat:$(SGML_TOPDIR)/share/sgml/html/4.01/HTML4.cat
390 1.1 mlelstv
391 1.1 mlelstv # The name, arguments and environment of a program to validate your web pages.
392 1.34 christos # See <http://openjade.sourceforge.net/doc/> for a validator, and
393 1.34 christos # <https://validator.w3.org/source/> for a validation library.
394 1.38 christos # Set VALIDATE=':' if you do not have such a program.
395 1.1 mlelstv VALIDATE = nsgmls
396 1.1 mlelstv VALIDATE_FLAGS = -s -B -wall -wno-unused-param
397 1.1 mlelstv VALIDATE_ENV = \
398 1.39 christos SGML_CATALOG_FILES='$(SGML_CATALOG_FILES)' \
399 1.39 christos SGML_SEARCH_PATH='$(SGML_SEARCH_PATH)' \
400 1.1 mlelstv SP_CHARSET_FIXED=YES \
401 1.1 mlelstv SP_ENCODING=UTF-8
402 1.1 mlelstv
403 1.23 christos # This expensive test requires USE_LTZ.
404 1.23 christos # To suppress it, define this macro to be empty.
405 1.23 christos CHECK_TIME_T_ALTERNATIVES = check_time_t_alternatives
406 1.23 christos
407 1.22 christos # SAFE_CHAR is a regular expression that matches a safe character.
408 1.22 christos # Some parts of this distribution are limited to safe characters;
409 1.22 christos # others can use any UTF-8 character.
410 1.22 christos # For now, the safe characters are a safe subset of ASCII.
411 1.9 christos # The caller must set the shell variable 'sharp' to the character '#',
412 1.9 christos # since Makefile macros cannot contain '#'.
413 1.9 christos # TAB_CHAR is a single tab character, in single quotes.
414 1.9 christos TAB_CHAR= ' '
415 1.22 christos SAFE_CHARSET1= $(TAB_CHAR)' !\"'$$sharp'$$%&'\''()*+,./0123456789:;<=>?@'
416 1.22 christos SAFE_CHARSET2= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\^_`'
417 1.22 christos SAFE_CHARSET3= 'abcdefghijklmnopqrstuvwxyz{|}~'
418 1.29 christos SAFE_CHARSET= $(SAFE_CHARSET1)$(SAFE_CHARSET2)$(SAFE_CHARSET3)
419 1.29 christos SAFE_CHAR= '[]'$(SAFE_CHARSET)'-]'
420 1.29 christos
421 1.41 christos # These characters are Latin-1, and so are likely to be displayable
422 1.41 christos # even in editors with limited character sets.
423 1.41 christos UNUSUAL_OK_LATIN_1 =
424 1.41 christos # This IPA symbol is represented in Unicode as the composition of
425 1.41 christos # U+0075 and U+032F, and U+032F is not considered alphabetic by some
426 1.41 christos # grep implementations that do not grok composition.
427 1.41 christos UNUSUAL_OK_IPA = u
428 1.40 christos # Non-ASCII non-letters that OK_CHAR allows, as these characters are
429 1.41 christos # useful in commentary.
430 1.41 christos UNUSUAL_OK_CHARSET= $(UNUSUAL_OK_LATIN_1)$(UNUSUAL_OK_IPA)
431 1.40 christos
432 1.29 christos # OK_CHAR matches any character allowed in the distributed files.
433 1.40 christos # This is the same as SAFE_CHAR, except that UNUSUAL_OK_CHARSET and
434 1.40 christos # multibyte letters are also allowed so that commentary can contain a
435 1.40 christos # few safe symbols and people's names and can quote non-English sources.
436 1.40 christos # Other non-letters are limited to ASCII renderings for the
437 1.40 christos # convenience of maintainers using XEmacs 21.5.34, which by default
438 1.40 christos # mishandles Unicode characters U+0100 and greater.
439 1.40 christos OK_CHAR= '[][:alpha:]$(UNUSUAL_OK_CHARSET)'$(SAFE_CHARSET)'-]'
440 1.22 christos
441 1.22 christos # SAFE_LINE matches a line of safe characters.
442 1.29 christos # SAFE_SHARP_LINE is similar, except any OK character can follow '#';
443 1.22 christos # this is so that comments can contain non-ASCII characters.
444 1.29 christos # OK_LINE matches a line of OK characters.
445 1.22 christos SAFE_LINE= '^'$(SAFE_CHAR)'*$$'
446 1.29 christos SAFE_SHARP_LINE='^'$(SAFE_CHAR)'*('$$sharp$(OK_CHAR)'*)?$$'
447 1.29 christos OK_LINE= '^'$(OK_CHAR)'*$$'
448 1.9 christos
449 1.6 christos # Flags to give 'tar' when making a distribution.
450 1.6 christos # Try to use flags appropriate for GNU tar.
451 1.34 christos GNUTARFLAGS= --numeric-owner --owner=0 --group=0 --mode=go+u,go-w --sort=name
452 1.6 christos TARFLAGS= `if tar $(GNUTARFLAGS) --version >/dev/null 2>&1; \
453 1.6 christos then echo $(GNUTARFLAGS); \
454 1.6 christos else :; \
455 1.6 christos fi`
456 1.6 christos
457 1.6 christos # Flags to give 'gzip' when making a distribution.
458 1.38 christos GZIPFLAGS= -9n
459 1.6 christos
460 1.1 mlelstv ###############################################################################
461 1.1 mlelstv
462 1.29 christos #MAKE= make
463 1.29 christos
464 1.1 mlelstv cc= cc
465 1.39 christos CC= $(cc) -DTZDIR='"$(TZDIR)"'
466 1.1 mlelstv
467 1.16 christos AR= ar
468 1.16 christos
469 1.16 christos # ':' on typical hosts; 'ranlib' on the ancient hosts that still need ranlib.
470 1.16 christos RANLIB= :
471 1.16 christos
472 1.28 christos TZCOBJS= zic.o
473 1.38 christos TZDOBJS= zdump.o localtime.o asctime.o strftime.o
474 1.1 mlelstv DATEOBJS= date.o localtime.o strftime.o asctime.o
475 1.1 mlelstv LIBSRCS= localtime.c asctime.c difftime.c
476 1.1 mlelstv LIBOBJS= localtime.o asctime.o difftime.o
477 1.1 mlelstv HEADERS= tzfile.h private.h
478 1.28 christos NONLIBSRCS= zic.c zdump.c
479 1.1 mlelstv NEWUCBSRCS= date.c strftime.c
480 1.23 christos SOURCES= $(HEADERS) $(LIBSRCS) $(NONLIBSRCS) $(NEWUCBSRCS) \
481 1.35 christos tzselect.ksh workman.sh
482 1.1 mlelstv MANS= newctime.3 newstrftime.3 newtzset.3 time2posix.3 \
483 1.1 mlelstv tzfile.5 tzselect.8 zic.8 zdump.8
484 1.16 christos MANTXTS= newctime.3.txt newstrftime.3.txt newtzset.3.txt \
485 1.16 christos time2posix.3.txt \
486 1.16 christos tzfile.5.txt tzselect.8.txt zic.8.txt zdump.8.txt \
487 1.16 christos date.1.txt
488 1.38 christos COMMON= calendars CONTRIBUTING LICENSE Makefile \
489 1.38 christos NEWS README theory.html version
490 1.39 christos WEB_PAGES= tz-art.html tz-how-to.html tz-link.html
491 1.23 christos DOCS= $(MANS) date.1 $(MANTXTS) $(WEB_PAGES)
492 1.1 mlelstv PRIMARY_YDATA= africa antarctica asia australasia \
493 1.1 mlelstv europe northamerica southamerica
494 1.39 christos YDATA= $(PRIMARY_YDATA) etcetera
495 1.4 christos NDATA= systemv factory
496 1.39 christos TDATA_TO_CHECK= $(YDATA) $(NDATA) backward pacificnew
497 1.39 christos TDATA= $(YDATA) $(NDATA) $(BACKWARD)
498 1.22 christos ZONETABLES= zone1970.tab zone.tab
499 1.38 christos TABDATA= iso3166.tab $(TZDATA_TEXT) $(ZONETABLES)
500 1.16 christos LEAP_DEPS= leapseconds.awk leap-seconds.list
501 1.40 christos TZDATA_ZI_DEPS= ziguard.awk zishrink.awk version $(TDATA) $(PACKRATDATA)
502 1.40 christos DSTDATA_ZI_DEPS= ziguard.awk $(TDATA) $(PACKRATDATA)
503 1.39 christos DATA= $(TDATA_TO_CHECK) backzone iso3166.tab leap-seconds.list \
504 1.38 christos leapseconds yearistype.sh $(ZONETABLES)
505 1.40 christos AWK_SCRIPTS= checklinks.awk checktab.awk leapseconds.awk \
506 1.40 christos ziguard.awk zishrink.awk
507 1.23 christos MISC= $(AWK_SCRIPTS) zoneinfo2tdf.pl
508 1.34 christos TZS_YEAR= 2050
509 1.41 christos TZS_CUTOFF_FLAG= -c $(TZS_YEAR)
510 1.34 christos TZS= to$(TZS_YEAR).tzs
511 1.34 christos TZS_NEW= to$(TZS_YEAR)new.tzs
512 1.34 christos TZS_DEPS= $(PRIMARY_YDATA) asctime.c localtime.c \
513 1.34 christos private.h tzfile.h zdump.c zic.c
514 1.41 christos # EIGHT_YARDS is just a yard short of the whole ENCHILADA.
515 1.41 christos EIGHT_YARDS = $(COMMON) $(DOCS) $(SOURCES) $(DATA) $(MISC) tzdata.zi
516 1.41 christos ENCHILADA = $(EIGHT_YARDS) $(TZS)
517 1.34 christos
518 1.34 christos # Consult these files when deciding whether to rebuild the 'version' file.
519 1.34 christos # This list is not the same as the output of 'git ls-files', since
520 1.34 christos # .gitignore is not distributed.
521 1.34 christos VERSION_DEPS= \
522 1.38 christos calendars CONTRIBUTING LICENSE Makefile NEWS README \
523 1.34 christos africa antarctica asctime.c asia australasia \
524 1.34 christos backward backzone \
525 1.34 christos checklinks.awk checktab.awk \
526 1.34 christos date.1 date.c difftime.c \
527 1.34 christos etcetera europe factory iso3166.tab \
528 1.34 christos leap-seconds.list leapseconds.awk localtime.c \
529 1.34 christos newctime.3 newstrftime.3 newtzset.3 northamerica \
530 1.34 christos pacificnew private.h \
531 1.38 christos southamerica strftime.c systemv theory.html \
532 1.39 christos time2posix.3 tz-art.html tz-how-to.html tz-link.html \
533 1.34 christos tzfile.5 tzfile.h tzselect.8 tzselect.ksh \
534 1.34 christos workman.sh yearistype.sh \
535 1.34 christos zdump.8 zdump.c zic.8 zic.c \
536 1.40 christos ziguard.awk zishrink.awk \
537 1.34 christos zone.tab zone1970.tab zoneinfo2tdf.pl
538 1.1 mlelstv
539 1.1 mlelstv # And for the benefit of csh users on systems that assume the user
540 1.1 mlelstv # shell should be used to handle commands in Makefiles. . .
541 1.1 mlelstv
542 1.1 mlelstv SHELL= /bin/sh
543 1.1 mlelstv
544 1.40 christos all: tzselect yearistype zic zdump libtz.a $(TABDATA) \
545 1.40 christos vanguard.zi main.zi rearguard.zi
546 1.1 mlelstv
547 1.29 christos ALL: all date $(ENCHILADA)
548 1.1 mlelstv
549 1.16 christos install: all $(DATA) $(REDO) $(MANS)
550 1.39 christos mkdir -p '$(DESTDIR)$(BINDIR)' \
551 1.39 christos '$(DESTDIR)$(ZDUMPDIR)' '$(DESTDIR)$(ZICDIR)' \
552 1.39 christos '$(DESTDIR)$(LIBDIR)' \
553 1.39 christos '$(DESTDIR)$(MANDIR)/man3' '$(DESTDIR)$(MANDIR)/man5' \
554 1.39 christos '$(DESTDIR)$(MANDIR)/man8'
555 1.39 christos $(ZIC_INSTALL) -l $(LOCALTIME) -p $(POSIXRULES) \
556 1.39 christos -t '$(DESTDIR)$(TZDEFAULT)'
557 1.39 christos cp -f $(TABDATA) '$(DESTDIR)$(TZDIR)/.'
558 1.39 christos cp tzselect '$(DESTDIR)$(BINDIR)/.'
559 1.39 christos cp zdump '$(DESTDIR)$(ZDUMPDIR)/.'
560 1.39 christos cp zic '$(DESTDIR)$(ZICDIR)/.'
561 1.39 christos cp libtz.a '$(DESTDIR)$(LIBDIR)/.'
562 1.39 christos $(RANLIB) '$(DESTDIR)$(LIBDIR)/libtz.a'
563 1.39 christos cp -f newctime.3 newtzset.3 '$(DESTDIR)$(MANDIR)/man3/.'
564 1.39 christos cp -f tzfile.5 '$(DESTDIR)$(MANDIR)/man5/.'
565 1.39 christos cp -f tzselect.8 zdump.8 zic.8 '$(DESTDIR)$(MANDIR)/man8/.'
566 1.1 mlelstv
567 1.1 mlelstv INSTALL: ALL install date.1
568 1.39 christos mkdir -p '$(DESTDIR)$(BINDIR)' '$(DESTDIR)$(MANDIR)/man1'
569 1.39 christos cp date '$(DESTDIR)$(BINDIR)/.'
570 1.39 christos cp -f date.1 '$(DESTDIR)$(MANDIR)/man1/.'
571 1.1 mlelstv
572 1.34 christos version: $(VERSION_DEPS)
573 1.35 christos { (type git) >/dev/null 2>&1 && \
574 1.35 christos V=`git describe --match '[0-9][0-9][0-9][0-9][a-z]*' \
575 1.35 christos --abbrev=7 --dirty` || \
576 1.39 christos V='$(VERSION)'; } && \
577 1.35 christos printf '%s\n' "$$V" >$@.out
578 1.35 christos mv $@.out $@
579 1.34 christos
580 1.41 christos # These files can be tailored by setting BACKWARD and PACKRATDATA.
581 1.40 christos vanguard.zi main.zi rearguard.zi: $(DSTDATA_ZI_DEPS)
582 1.40 christos $(AWK) -v DATAFORM=`expr $@ : '\(.*\).zi'` -f ziguard.awk \
583 1.40 christos $(TDATA) $(PACKRATDATA) >$@.out
584 1.40 christos mv $@.out $@
585 1.41 christos # This file has a version comment that attempts to capture any tailoring
586 1.41 christos # via BACKWARD, DATAFORM, PACKRATDATA, and REDO.
587 1.41 christos tzdata.zi: $(DATAFORM).zi version zishrink.awk
588 1.39 christos version=`sed 1q version` && \
589 1.41 christos LC_ALL=C $(AWK) \
590 1.41 christos -v dataform='$(DATAFORM)' \
591 1.41 christos -v deps='$(DSTDATA_ZI_DEPS) zishrink.awk' \
592 1.41 christos -v redo='$(REDO)' \
593 1.41 christos -v version="$$version" \
594 1.41 christos -f zishrink.awk \
595 1.40 christos $(DATAFORM).zi >$@.out
596 1.38 christos mv $@.out $@
597 1.38 christos
598 1.34 christos version.h: version
599 1.35 christos VERSION=`cat version` && printf '%s\n' \
600 1.35 christos 'static char const PKGVERSION[]="($(PACKAGE)) ";' \
601 1.35 christos "static char const TZVERSION[]=\"$$VERSION\";" \
602 1.35 christos 'static char const REPORT_BUGS_TO[]="$(BUGEMAIL)";' \
603 1.35 christos >$@.out
604 1.35 christos mv $@.out $@
605 1.6 christos
606 1.1 mlelstv zdump: $(TZDOBJS)
607 1.9 christos $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(TZDOBJS) $(LDLIBS)
608 1.1 mlelstv
609 1.32 christos zic: $(TZCOBJS)
610 1.9 christos $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(TZCOBJS) $(LDLIBS)
611 1.1 mlelstv
612 1.1 mlelstv yearistype: yearistype.sh
613 1.1 mlelstv cp yearistype.sh yearistype
614 1.1 mlelstv chmod +x yearistype
615 1.1 mlelstv
616 1.16 christos leapseconds: $(LEAP_DEPS)
617 1.35 christos $(AWK) -f leapseconds.awk leap-seconds.list >$@.out
618 1.35 christos mv $@.out $@
619 1.15 christos
620 1.32 christos # Arguments to pass to submakes of install_data.
621 1.32 christos # They can be overridden by later submake arguments.
622 1.32 christos INSTALLARGS = \
623 1.39 christos BACKWARD='$(BACKWARD)' \
624 1.39 christos DESTDIR='$(DESTDIR)' \
625 1.32 christos LEAPSECONDS='$(LEAPSECONDS)' \
626 1.32 christos PACKRATDATA='$(PACKRATDATA)' \
627 1.39 christos TZDEFAULT='$(TZDEFAULT)' \
628 1.39 christos TZDIR='$(TZDIR)' \
629 1.39 christos YEARISTYPE='$(YEARISTYPE)' \
630 1.32 christos ZIC='$(ZIC)'
631 1.32 christos
632 1.41 christos INSTALL_DATA_DEPS = zic leapseconds yearistype tzdata.zi
633 1.41 christos
634 1.41 christos # 'make install_data' installs one set of TZif files.
635 1.41 christos install_data: $(INSTALL_DATA_DEPS)
636 1.38 christos $(ZIC_INSTALL) tzdata.zi
637 1.32 christos
638 1.41 christos posix_only: $(INSTALL_DATA_DEPS)
639 1.32 christos $(MAKE) $(INSTALLARGS) LEAPSECONDS= install_data
640 1.32 christos
641 1.41 christos right_only: $(INSTALL_DATA_DEPS)
642 1.32 christos $(MAKE) $(INSTALLARGS) LEAPSECONDS='-L leapseconds' \
643 1.32 christos install_data
644 1.1 mlelstv
645 1.1 mlelstv # In earlier versions of this makefile, the other two directories were
646 1.1 mlelstv # subdirectories of $(TZDIR). However, this led to configuration errors.
647 1.1 mlelstv # For example, with posix_right under the earlier scheme,
648 1.1 mlelstv # TZ='right/Australia/Adelaide' got you localtime with leap seconds,
649 1.1 mlelstv # but gmtime without leap seconds, which led to problems with applications
650 1.1 mlelstv # like sendmail that subtract gmtime from localtime.
651 1.1 mlelstv # Therefore, the other two directories are now siblings of $(TZDIR).
652 1.1 mlelstv # You must replace all of $(TZDIR) to switch from not using leap seconds
653 1.1 mlelstv # to using them, or vice versa.
654 1.32 christos right_posix: right_only
655 1.39 christos rm -fr '$(DESTDIR)$(TZDIR)-leaps'
656 1.39 christos ln -s '$(TZDIR_BASENAME)' '$(DESTDIR)$(TZDIR)-leaps' || \
657 1.39 christos $(MAKE) $(INSTALLARGS) TZDIR='$(TZDIR)-leaps' right_only
658 1.39 christos $(MAKE) $(INSTALLARGS) TZDIR='$(TZDIR)-posix' posix_only
659 1.15 christos
660 1.32 christos posix_right: posix_only
661 1.39 christos rm -fr '$(DESTDIR)$(TZDIR)-posix'
662 1.39 christos ln -s '$(TZDIR_BASENAME)' '$(DESTDIR)$(TZDIR)-posix' || \
663 1.39 christos $(MAKE) $(INSTALLARGS) TZDIR='$(TZDIR)-posix' posix_only
664 1.39 christos $(MAKE) $(INSTALLARGS) TZDIR='$(TZDIR)-leaps' right_only
665 1.32 christos
666 1.32 christos # This obsolescent rule is present for backwards compatibility with
667 1.32 christos # tz releases 2014g through 2015g. It should go away eventually.
668 1.41 christos posix_packrat: $(INSTALL_DATA_DEPS)
669 1.32 christos $(MAKE) $(INSTALLARGS) PACKRATDATA=backzone posix_only
670 1.23 christos
671 1.1 mlelstv zones: $(REDO)
672 1.1 mlelstv
673 1.40 christos # dummy.zd is not a real file; it is mentioned here only so that the
674 1.40 christos # top-level 'make' does not have a syntax error.
675 1.40 christos ZDS = dummy.zd
676 1.40 christos # Rule used only by submakes invoked by the $(TZS_NEW) rule.
677 1.40 christos # It is separate so that GNU 'make -j' can run instances in parallel.
678 1.40 christos $(ZDS): zdump
679 1.41 christos ./zdump -i $(TZS_CUTOFF_FLAG) '$(wd)/'$$(expr $@ : '\(.*\).zd') \
680 1.41 christos >$@
681 1.40 christos
682 1.41 christos TZS_NEW_DEPS = tzdata.zi zdump zic
683 1.41 christos $(TZS_NEW): $(TZS_NEW_DEPS)
684 1.41 christos rm -fr tzs$(TZS_YEAR).dir
685 1.41 christos mkdir tzs$(TZS_YEAR).dir
686 1.41 christos $(zic) -d tzs$(TZS_YEAR).dir tzdata.zi
687 1.38 christos $(AWK) '/^L/{print "Link\t" $$2 "\t" $$3}' \
688 1.38 christos tzdata.zi | LC_ALL=C sort >$@.out
689 1.35 christos wd=`pwd` && \
690 1.41 christos x=`$(AWK) '/^Z/{print "tzs$(TZS_YEAR).dir/" $$2 ".zd"}' \
691 1.41 christos tzdata.zi \
692 1.40 christos | LC_ALL=C sort -t . -k 2,2` && \
693 1.41 christos set x $$x && \
694 1.40 christos shift && \
695 1.40 christos ZDS=$$* && \
696 1.41 christos $(MAKE) wd="$$wd" TZS_CUTOFF_FLAG="$(TZS_CUTOFF_FLAG)" \
697 1.41 christos ZDS="$$ZDS" $$ZDS && \
698 1.41 christos sed 's,^TZ=".*\.dir/,TZ=",' $$ZDS >>$@.out
699 1.41 christos rm -fr tzs$(TZS_YEAR).dir
700 1.40 christos mv $@.out $@
701 1.34 christos
702 1.41 christos # If $(TZS) exists but 'make check_tzs' fails, a maintainer should inspect the
703 1.34 christos # failed output and fix the inconsistency, perhaps by running 'make force_tzs'.
704 1.34 christos $(TZS):
705 1.41 christos touch $@
706 1.34 christos
707 1.34 christos force_tzs: $(TZS_NEW)
708 1.34 christos cp $(TZS_NEW) $(TZS)
709 1.34 christos
710 1.16 christos libtz.a: $(LIBOBJS)
711 1.37 christos rm -f $@
712 1.37 christos $(AR) -rc $@ $(LIBOBJS)
713 1.16 christos $(RANLIB) $@
714 1.1 mlelstv
715 1.1 mlelstv date: $(DATEOBJS)
716 1.9 christos $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(DATEOBJS) $(LDLIBS)
717 1.1 mlelstv
718 1.34 christos tzselect: tzselect.ksh version
719 1.35 christos VERSION=`cat version` && sed \
720 1.9 christos -e 's|#!/bin/bash|#!$(KSHELL)|g' \
721 1.1 mlelstv -e 's|AWK=[^}]*|AWK=$(AWK)|g' \
722 1.9 christos -e 's|\(PKGVERSION\)=.*|\1='\''($(PACKAGE)) '\''|' \
723 1.9 christos -e 's|\(REPORT_BUGS_TO\)=.*|\1=$(BUGEMAIL)|' \
724 1.1 mlelstv -e 's|TZDIR=[^}]*|TZDIR=$(TZDIR)|' \
725 1.35 christos -e 's|\(TZVERSION\)=.*|\1='"$$VERSION"'|' \
726 1.35 christos <$@.ksh >$@.out
727 1.35 christos chmod +x $@.out
728 1.35 christos mv $@.out $@
729 1.1 mlelstv
730 1.38 christos check: check_character_set check_white_space check_links \
731 1.38 christos check_name_lengths check_sorted \
732 1.38 christos check_tables check_web check_zishrink check_tzs
733 1.9 christos
734 1.9 christos check_character_set: $(ENCHILADA)
735 1.38 christos test ! '$(UTF8_LOCALE)' || \
736 1.38 christos ! printf 'A\304\200B\n' | \
737 1.38 christos LC_ALL='$(UTF8_LOCALE)' grep -q '^A.B$$' >/dev/null 2>&1 || { \
738 1.38 christos LC_ALL='$(UTF8_LOCALE)' && export LC_ALL && \
739 1.22 christos sharp='#' && \
740 1.35 christos ! grep -Env $(SAFE_LINE) $(MANS) date.1 $(MANTXTS) \
741 1.35 christos $(MISC) $(SOURCES) $(WEB_PAGES) \
742 1.40 christos CONTRIBUTING LICENSE README \
743 1.38 christos version tzdata.zi && \
744 1.41 christos ! grep -Env $(SAFE_LINE)'|^UNUSUAL_OK_'$(OK_CHAR)'*$$' \
745 1.40 christos Makefile && \
746 1.39 christos ! grep -Env $(SAFE_SHARP_LINE) $(TDATA_TO_CHECK) backzone \
747 1.29 christos leapseconds yearistype.sh zone.tab && \
748 1.38 christos ! grep -Env $(OK_LINE) $(ENCHILADA); \
749 1.38 christos }
750 1.41 christos touch $@
751 1.22 christos
752 1.23 christos check_white_space: $(ENCHILADA)
753 1.35 christos patfmt=' \t|[\f\r\v]' && pat=`printf "$$patfmt\\n"` && \
754 1.41 christos ! grep -En "$$pat" \
755 1.41 christos $$(ls $(ENCHILADA) | grep -Fvx leap-seconds.list)
756 1.39 christos ! grep -n '[[:space:]]$$' \
757 1.39 christos $$(ls $(ENCHILADA) | grep -Fvx leap-seconds.list)
758 1.41 christos touch $@
759 1.23 christos
760 1.38 christos PRECEDES_FILE_NAME = ^(Zone|Link[[:space:]]+[^[:space:]]+)[[:space:]]+
761 1.38 christos FILE_NAME_COMPONENT_TOO_LONG = \
762 1.38 christos $(PRECEDES_FILE_NAME)[^[:space:]]*[^/[:space:]]{15}
763 1.38 christos
764 1.39 christos check_name_lengths: $(TDATA_TO_CHECK) backzone
765 1.39 christos ! grep -En '$(FILE_NAME_COMPONENT_TOO_LONG)' \
766 1.39 christos $(TDATA_TO_CHECK) backzone
767 1.41 christos touch $@
768 1.38 christos
769 1.23 christos CHECK_CC_LIST = { n = split($$1,a,/,/); for (i=2; i<=n; i++) print a[1], a[i]; }
770 1.23 christos
771 1.23 christos check_sorted: backward backzone iso3166.tab zone.tab zone1970.tab
772 1.23 christos $(AWK) '/^Link/ {print $$3}' backward | LC_ALL=C sort -cu
773 1.23 christos $(AWK) '/^Zone/ {print $$2}' backzone | LC_ALL=C sort -cu
774 1.23 christos $(AWK) '/^[^#]/ {print $$1}' iso3166.tab | LC_ALL=C sort -cu
775 1.23 christos $(AWK) '/^[^#]/ {print $$1}' zone.tab | LC_ALL=C sort -c
776 1.23 christos $(AWK) '/^[^#]/ {print substr($$0, 1, 2)}' zone1970.tab | \
777 1.23 christos LC_ALL=C sort -c
778 1.23 christos $(AWK) '/^[^#]/ $(CHECK_CC_LIST)' zone1970.tab | \
779 1.23 christos LC_ALL=C sort -cu
780 1.41 christos touch $@
781 1.23 christos
782 1.40 christos check_links: checklinks.awk $(TDATA_TO_CHECK) tzdata.zi
783 1.39 christos $(AWK) -f checklinks.awk $(TDATA_TO_CHECK)
784 1.38 christos $(AWK) -f checklinks.awk tzdata.zi
785 1.41 christos touch $@
786 1.26 christos
787 1.22 christos check_tables: checktab.awk $(PRIMARY_YDATA) $(ZONETABLES)
788 1.22 christos for tab in $(ZONETABLES); do \
789 1.22 christos $(AWK) -f checktab.awk -v zone_table=$$tab $(PRIMARY_YDATA) \
790 1.22 christos || exit; \
791 1.22 christos done
792 1.41 christos touch $@
793 1.1 mlelstv
794 1.34 christos check_tzs: $(TZS) $(TZS_NEW)
795 1.41 christos if test -s $(TZS); then \
796 1.41 christos diff -u $(TZS) $(TZS_NEW); \
797 1.41 christos else \
798 1.41 christos cp $(TZS_NEW) $(TZS); \
799 1.41 christos fi
800 1.41 christos touch $@
801 1.34 christos
802 1.38 christos # This checks only the HTML 4.01 strict page.
803 1.38 christos # To check the the other pages, use <https://validator.w3.org/>.
804 1.38 christos check_web: tz-how-to.html
805 1.38 christos $(VALIDATE_ENV) $(VALIDATE) $(VALIDATE_FLAGS) tz-how-to.html
806 1.41 christos touch $@
807 1.38 christos
808 1.40 christos # Check that zishrink.awk does not alter the data, and that ziguard.awk
809 1.40 christos # preserves main-format data.
810 1.41 christos check_zishrink: check_zishrink_posix check_zishrink_right
811 1.41 christos check_zishrink_posix check_zishrink_right: \
812 1.41 christos zic leapseconds $(PACKRATDATA) $(TDATA) $(DATAFORM).zi tzdata.zi
813 1.41 christos rm -fr $@.dir $@-t.dir $@-shrunk.dir
814 1.41 christos mkdir $@.dir $@-t.dir $@-shrunk.dir
815 1.41 christos case $@ in \
816 1.41 christos *_right) leap='-L leapseconds';; \
817 1.41 christos *) leap=;; \
818 1.41 christos esac && \
819 1.41 christos $(ZIC) $$leap -d $@.dir $(DATAFORM).zi && \
820 1.41 christos $(ZIC) $$leap -d $@-shrunk.dir tzdata.zi && \
821 1.40 christos case $(DATAFORM) in \
822 1.40 christos main) \
823 1.41 christos $(ZIC) $$leap -d $@-t.dir $(TDATA) && \
824 1.40 christos $(AWK) '/^Rule/' $(TDATA) | \
825 1.41 christos $(ZIC) $$leap -d $@-t.dir - $(PACKRATDATA) && \
826 1.41 christos diff -r $@.dir $@-t.dir;; \
827 1.41 christos esac
828 1.41 christos diff -r $@.dir $@-shrunk.dir
829 1.41 christos rm -fr $@.dir $@-t.dir $@-shrunk.dir
830 1.41 christos touch $@
831 1.1 mlelstv
832 1.14 christos clean_misc:
833 1.41 christos rm -f *.o *.out $(TIME_T_ALTERNATIVES) \
834 1.41 christos check_* core typecheck_* \
835 1.18 christos date tzselect version.h zdump zic yearistype libtz.a
836 1.14 christos clean: clean_misc
837 1.40 christos rm -fr *.dir *.zi tzdb-*/ $(TZS_NEW)
838 1.1 mlelstv
839 1.1 mlelstv maintainer-clean: clean
840 1.1 mlelstv @echo 'This command is intended for maintainers to use; it'
841 1.1 mlelstv @echo 'deletes files that may need special tools to rebuild.'
842 1.34 christos rm -f leapseconds version $(MANTXTS) $(TZS) *.asc *.tar.*
843 1.1 mlelstv
844 1.1 mlelstv names:
845 1.1 mlelstv @echo $(ENCHILADA)
846 1.1 mlelstv
847 1.23 christos public: check check_public $(CHECK_TIME_T_ALTERNATIVES) \
848 1.16 christos tarballs signatures
849 1.16 christos
850 1.16 christos date.1.txt: date.1
851 1.16 christos newctime.3.txt: newctime.3
852 1.16 christos newstrftime.3.txt: newstrftime.3
853 1.16 christos newtzset.3.txt: newtzset.3
854 1.16 christos time2posix.3.txt: time2posix.3
855 1.16 christos tzfile.5.txt: tzfile.5
856 1.16 christos tzselect.8.txt: tzselect.8
857 1.16 christos zdump.8.txt: zdump.8
858 1.16 christos zic.8.txt: zic.8
859 1.16 christos
860 1.16 christos $(MANTXTS): workman.sh
861 1.35 christos LC_ALL=C sh workman.sh `expr $@ : '\(.*\)\.txt$$'` >$@.out
862 1.35 christos mv $@.out $@
863 1.9 christos
864 1.41 christos # Set the timestamps to those of the git repository, if available,
865 1.6 christos # and if the files have not changed since then.
866 1.6 christos # This uses GNU 'touch' syntax 'touch -d@N FILE',
867 1.6 christos # where N is the number of seconds since 1970.
868 1.16 christos # If git or GNU 'touch' is absent, don't bother to sync with git timestamps.
869 1.16 christos # Also, set the timestamp of each prebuilt file like 'leapseconds'
870 1.16 christos # to be the maximum of the files it depends on.
871 1.41 christos set-timestamps.out: $(EIGHT_YARDS)
872 1.16 christos rm -f $@
873 1.35 christos if (type git) >/dev/null 2>&1 && \
874 1.41 christos files=`git ls-files $(EIGHT_YARDS)` && \
875 1.16 christos touch -md @1 test.out; then \
876 1.16 christos rm -f test.out && \
877 1.16 christos for file in $$files; do \
878 1.16 christos if git diff --quiet $$file; then \
879 1.16 christos time=`git log -1 --format='tformat:%ct' $$file` && \
880 1.16 christos touch -cmd @$$time $$file; \
881 1.16 christos else \
882 1.16 christos echo >&2 "$$file: warning: does not match repository"; \
883 1.16 christos fi || exit; \
884 1.16 christos done; \
885 1.16 christos fi
886 1.16 christos touch -cmr `ls -t $(LEAP_DEPS) | sed 1q` leapseconds
887 1.16 christos for file in `ls $(MANTXTS) | sed 's/\.txt$$//'`; do \
888 1.16 christos touch -cmr `ls -t $$file workman.sh | sed 1q` $$file.txt || \
889 1.16 christos exit; \
890 1.6 christos done
891 1.38 christos touch -cmr `ls -t $(TZDATA_ZI_DEPS) | sed 1q` tzdata.zi
892 1.41 christos touch -cmr `ls -t $(VERSION_DEPS) | sed 1q` version
893 1.41 christos touch $@
894 1.41 christos set-tzs-timestamp.out: $(TZS)
895 1.35 christos touch -cmr `ls -t $(TZS_DEPS) | sed 1q` $(TZS)
896 1.16 christos touch $@
897 1.6 christos
898 1.1 mlelstv # The zics below ensure that each data file can stand on its own.
899 1.1 mlelstv # We also do an all-files run to catch links to links.
900 1.1 mlelstv
901 1.41 christos check_public: $(VERSION_DEPS)
902 1.41 christos rm -fr public.dir
903 1.41 christos mkdir public.dir
904 1.41 christos ln $(VERSION_DEPS) public.dir
905 1.41 christos cd public.dir && $(MAKE) CFLAGS='$(GCC_DEBUG_FLAGS)' ALL
906 1.41 christos for i in $(TDATA_TO_CHECK) public.dir/tzdata.zi; do \
907 1.41 christos public.dir/zic -v -d public.dir/zoneinfo $$i 2>&1 || exit; \
908 1.9 christos done
909 1.41 christos public.dir/zic -v -d public.dir/zoneinfo-all $(TDATA_TO_CHECK)
910 1.34 christos rm -fr public.dir
911 1.41 christos touch $@
912 1.9 christos
913 1.14 christos # Check that the code works under various alternative
914 1.14 christos # implementations of time_t.
915 1.41 christos check_time_t_alternatives: $(TIME_T_ALTERNATIVES)
916 1.41 christos $(TIME_T_ALTERNATIVES_TAIL): $(TIME_T_ALTERNATIVES_HEAD)
917 1.41 christos $(TIME_T_ALTERNATIVES): $(VERSION_DEPS)
918 1.41 christos rm -fr $@.dir
919 1.41 christos mkdir $@.dir
920 1.41 christos ln $(VERSION_DEPS) $@.dir
921 1.41 christos case $@ in \
922 1.41 christos int32_t) range=-2147483648,2147483648;; \
923 1.41 christos u*) range=0,4294967296;; \
924 1.41 christos *) range=-4294967296,4294967296;; \
925 1.41 christos esac && \
926 1.41 christos wd=`pwd` && \
927 1.41 christos zones=`$(AWK) '/^[^#]/ { print $$3 }' <zone1970.tab` && \
928 1.41 christos if test $@ = $(TIME_T_ALTERNATIVES_HEAD); then \
929 1.41 christos range_target=; \
930 1.23 christos else \
931 1.41 christos range_target=to$$range.tzs; \
932 1.23 christos fi && \
933 1.41 christos (cd $@.dir && \
934 1.41 christos $(MAKE) TOPDIR="$$wd/$@.dir" \
935 1.41 christos CFLAGS='$(CFLAGS) -Dtime_tz='"'$@'" \
936 1.23 christos REDO='$(REDO)' \
937 1.41 christos D=$$wd/$@.dir \
938 1.41 christos TZS_YEAR="$$range" TZS_CUTOFF_FLAG="-t $$range" \
939 1.41 christos install $$range_target) && \
940 1.41 christos test $@ = $(TIME_T_ALTERNATIVES_HEAD) || { \
941 1.41 christos (cd $(TIME_T_ALTERNATIVES_HEAD).dir && \
942 1.41 christos $(MAKE) TOPDIR="$$wd/$@.dir" \
943 1.41 christos TZS_YEAR="$$range" TZS_CUTOFF_FLAG="-t $$range" \
944 1.41 christos D=$$wd/$@.dir \
945 1.41 christos to$$range.tzs) && \
946 1.41 christos diff -u $(TIME_T_ALTERNATIVES_HEAD).dir/to$$range.tzs \
947 1.41 christos $@.dir/to$$range.tzs && \
948 1.41 christos if diff -q Makefile Makefile 2>/dev/null; then \
949 1.41 christos quiet_option='-q'; \
950 1.41 christos else \
951 1.41 christos quiet_option=''; \
952 1.41 christos fi && \
953 1.41 christos diff $$quiet_option -r $(TIME_T_ALTERNATIVES_HEAD).dir/etc \
954 1.41 christos $@.dir/etc && \
955 1.41 christos diff $$quiet_option -r \
956 1.41 christos $(TIME_T_ALTERNATIVES_HEAD).dir/usr/share \
957 1.41 christos $@.dir/usr/share; \
958 1.41 christos }
959 1.41 christos touch $@
960 1.34 christos
961 1.40 christos TRADITIONAL_ASC = \
962 1.40 christos tzcode$(VERSION).tar.gz.asc \
963 1.40 christos tzdata$(VERSION).tar.gz.asc
964 1.41 christos REARGUARD_ASC = \
965 1.41 christos tzdata$(VERSION)-rearguard.tar.gz.asc
966 1.41 christos ALL_ASC = $(TRADITIONAL_ASC) $(REARGUARD_ASC) \
967 1.40 christos tzdb-$(VERSION).tar.lz.asc
968 1.40 christos
969 1.41 christos tarballs rearguard_tarballs traditional_tarballs \
970 1.41 christos signatures rearguard_signatures traditional_signatures: \
971 1.41 christos version set-timestamps.out rearguard.zi
972 1.35 christos VERSION=`cat version` && \
973 1.35 christos $(MAKE) VERSION="$$VERSION" $@_version
974 1.35 christos
975 1.40 christos # These *_version rules are intended for use if VERSION is set by some
976 1.40 christos # other means. Ordinarily these rules are used only by the above
977 1.40 christos # non-_version rules, which set VERSION on the 'make' command line.
978 1.41 christos tarballs_version: traditional_tarballs_version rearguard_tarballs_version \
979 1.40 christos tzdb-$(VERSION).tar.lz
980 1.41 christos rearguard_tarballs_version: \
981 1.41 christos tzdata$(VERSION)-rearguard.tar.gz
982 1.38 christos traditional_tarballs_version: \
983 1.38 christos tzcode$(VERSION).tar.gz tzdata$(VERSION).tar.gz
984 1.40 christos signatures_version: $(ALL_ASC)
985 1.41 christos rearguard_signatures_version: $(REARGUARD_ASC)
986 1.40 christos traditional_signatures_version: $(TRADITIONAL_ASC)
987 1.9 christos
988 1.16 christos tzcode$(VERSION).tar.gz: set-timestamps.out
989 1.6 christos LC_ALL=C && export LC_ALL && \
990 1.7 christos tar $(TARFLAGS) -cf - \
991 1.23 christos $(COMMON) $(DOCS) $(SOURCES) | \
992 1.38 christos gzip $(GZIPFLAGS) >$@.out
993 1.35 christos mv $@.out $@
994 1.10 christos
995 1.16 christos tzdata$(VERSION).tar.gz: set-timestamps.out
996 1.6 christos LC_ALL=C && export LC_ALL && \
997 1.23 christos tar $(TARFLAGS) -cf - $(COMMON) $(DATA) $(MISC) | \
998 1.38 christos gzip $(GZIPFLAGS) >$@.out
999 1.35 christos mv $@.out $@
1000 1.9 christos
1001 1.40 christos tzdata$(VERSION)-rearguard.tar.gz: rearguard.zi set-timestamps.out
1002 1.40 christos rm -fr tzdata$(VERSION)-rearguard.dir
1003 1.40 christos mkdir tzdata$(VERSION)-rearguard.dir
1004 1.40 christos ln $(COMMON) $(DATA) $(MISC) tzdata$(VERSION)-rearguard.dir
1005 1.40 christos cd tzdata$(VERSION)-rearguard.dir && \
1006 1.40 christos rm -f $(TDATA) $(PACKRATDATA) version
1007 1.40 christos for f in $(TDATA) $(PACKRATDATA); do \
1008 1.40 christos rearf=tzdata$(VERSION)-rearguard.dir/$$f; \
1009 1.40 christos $(AWK) -v DATAFORM=rearguard -f ziguard.awk $$f >$$rearf && \
1010 1.40 christos touch -cmr `ls -t ziguard.awk $$f` $$rearf || exit; \
1011 1.40 christos done
1012 1.40 christos sed '1s/$$/-rearguard/' \
1013 1.40 christos <version >tzdata$(VERSION)-rearguard.dir/version
1014 1.40 christos touch -cmr version tzdata$(VERSION)-rearguard.dir/version
1015 1.40 christos LC_ALL=C && export LC_ALL && \
1016 1.40 christos (cd tzdata$(VERSION)-rearguard.dir && \
1017 1.40 christos tar $(TARFLAGS) -cf - $(COMMON) $(DATA) $(MISC) | \
1018 1.40 christos gzip $(GZIPFLAGS)) >$@.out
1019 1.40 christos mv $@.out $@
1020 1.40 christos
1021 1.41 christos tzdb-$(VERSION).tar.lz: set-timestamps.out set-tzs-timestamp.out
1022 1.34 christos rm -fr tzdb-$(VERSION)
1023 1.34 christos mkdir tzdb-$(VERSION)
1024 1.34 christos ln $(ENCHILADA) tzdb-$(VERSION)
1025 1.35 christos touch -cmr `ls -t tzdb-$(VERSION)/* | sed 1q` tzdb-$(VERSION)
1026 1.34 christos LC_ALL=C && export LC_ALL && \
1027 1.35 christos tar $(TARFLAGS) -cf - tzdb-$(VERSION) | lzip -9 >$@.out
1028 1.35 christos mv $@.out $@
1029 1.9 christos
1030 1.9 christos tzcode$(VERSION).tar.gz.asc: tzcode$(VERSION).tar.gz
1031 1.9 christos tzdata$(VERSION).tar.gz.asc: tzdata$(VERSION).tar.gz
1032 1.40 christos tzdata$(VERSION)-rearguard.tar.gz.asc: tzdata$(VERSION)-rearguard.tar.gz
1033 1.34 christos tzdb-$(VERSION).tar.lz.asc: tzdb-$(VERSION).tar.lz
1034 1.40 christos $(ALL_ASC):
1035 1.41 christos gpg2 --armor --detach-sign $?
1036 1.34 christos
1037 1.41 christos TYPECHECK_CFLAGS = $(CFLAGS) -DTYPECHECK -D__time_t_defined -D_TIME_T
1038 1.41 christos typecheck: typecheck_long_long typecheck_unsigned
1039 1.41 christos typecheck_long_long typecheck_unsigned: $(VERSION_DEPS)
1040 1.41 christos rm -fr $@.dir
1041 1.41 christos mkdir $@.dir
1042 1.41 christos ln $(VERSION_DEPS) $@.dir
1043 1.41 christos cd $@.dir && \
1044 1.41 christos case $@ in \
1045 1.41 christos *_long_long) i="long long";; \
1046 1.41 christos *_unsigned ) i="unsigned" ;; \
1047 1.41 christos esac && \
1048 1.41 christos typecheck_cflags='' && \
1049 1.41 christos $(MAKE) \
1050 1.41 christos CFLAGS="$(TYPECHECK_CFLAGS) \"-Dtime_t=$$i\"" \
1051 1.41 christos TOPDIR="`pwd`" \
1052 1.41 christos install
1053 1.41 christos $@.dir/zdump -i -c 1970,1971 Europe/Rome
1054 1.41 christos touch $@
1055 1.1 mlelstv
1056 1.38 christos zonenames: tzdata.zi
1057 1.38 christos @$(AWK) '/^Z/ { print $$2 } /^L/ { print $$3 }' tzdata.zi
1058 1.1 mlelstv
1059 1.1 mlelstv asctime.o: private.h tzfile.h
1060 1.1 mlelstv date.o: private.h
1061 1.1 mlelstv difftime.o: private.h
1062 1.1 mlelstv localtime.o: private.h tzfile.h
1063 1.23 christos strftime.o: private.h tzfile.h
1064 1.6 christos zdump.o: version.h
1065 1.6 christos zic.o: private.h tzfile.h version.h
1066 1.1 mlelstv
1067 1.1 mlelstv .KEEP_STATE:
1068 1.22 christos
1069 1.22 christos .PHONY: ALL INSTALL all
1070 1.41 christos .PHONY: check check_time_t_alternatives
1071 1.38 christos .PHONY: check_zishrink
1072 1.40 christos .PHONY: clean clean_misc dummy.zd force_tzs
1073 1.32 christos .PHONY: install install_data maintainer-clean names
1074 1.41 christos .PHONY: posix_only posix_packrat posix_right public
1075 1.41 christos .PHONY: rearguard_signatures rearguard_signatures_version
1076 1.41 christos .PHONY: rearguard_tarballs rearguard_tarballs_version
1077 1.41 christos .PHONY: right_only right_posix signatures signatures_version
1078 1.40 christos .PHONY: tarballs tarballs_version
1079 1.40 christos .PHONY: traditional_signatures traditional_signatures_version
1080 1.40 christos .PHONY: traditional_tarballs traditional_tarballs_version
1081 1.40 christos .PHONY: typecheck
1082 1.22 christos .PHONY: zonenames zones
1083 1.40 christos .PHONY: $(ZDS)
1084