bbe1ba825e81c4c21e34e5903fc488da2b4455d6
[platform/upstream/tzdata.git] / Makefile
1 # This file is in the public domain, so clarified as of
2 # 2009-05-17 by Arthur David Olson.
3
4 # Package name for the code distribution.
5 PACKAGE=        tzcode
6
7 # Version numbers of the code and data distributions.
8 VERSION=        2016f
9
10 # Email address for bug reports.
11 BUGEMAIL=       tz@iana.org
12
13 # Change the line below for your time zone (after finding the zone you want in
14 # the time zone files, or adding it to a time zone file).
15 # Alternately, if you discover you've got the wrong time zone, you can just
16 #       zic -l rightzone
17 # to correct things.
18 # Use the command
19 #       make zonenames
20 # to get a list of the values you can use for LOCALTIME.
21
22 LOCALTIME=      GMT
23
24 # If you want something other than Eastern United States time as a template
25 # for handling POSIX-style time zone environment variables,
26 # change the line below (after finding the zone you want in the
27 # time zone files, or adding it to a time zone file).
28 # (When a POSIX-style environment variable is handled, the rules in the
29 # template file are used to determine "spring forward" and "fall back" days and
30 # times; the environment variable itself specifies UT offsets of standard and
31 # summer time.)
32 # Alternately, if you discover you've got the wrong time zone, you can just
33 #       zic -p rightzone
34 # to correct things.
35 # Use the command
36 #       make zonenames
37 # to get a list of the values you can use for POSIXRULES.
38 # If you want POSIX compatibility, use "America/New_York".
39
40 POSIXRULES=     America/New_York
41
42 # Also see TZDEFRULESTRING below, which takes effect only
43 # if the time zone files cannot be accessed.
44
45 # Everything gets put in subdirectories of. . .
46
47 TOPDIR=         /usr/local
48
49 # "Compiled" time zone information is placed in the "TZDIR" directory
50 # (and subdirectories).
51 # Use an absolute path name for TZDIR unless you're just testing the software.
52
53 TZDIR_BASENAME= zoneinfo
54 TZDIR=          $(TOPDIR)/etc/$(TZDIR_BASENAME)
55
56 # Types to try, as an alternative to time_t.  int64_t should be first.
57 TIME_T_ALTERNATIVES= int64_t int32_t uint32_t uint64_t
58
59 # The "tzselect", "zic", and "zdump" commands get installed in. . .
60
61 ETCDIR=         $(TOPDIR)/etc
62
63 # If you "make INSTALL", the "date" command gets installed in. . .
64
65 BINDIR=         $(TOPDIR)/bin
66
67 # Manual pages go in subdirectories of. . .
68
69 MANDIR=         $(TOPDIR)/man
70
71 # Library functions are put in an archive in LIBDIR.
72
73 LIBDIR=         $(TOPDIR)/lib
74
75 # If you always want time values interpreted as "seconds since the epoch
76 # (not counting leap seconds)", use
77 #       REDO=           posix_only
78 # below.  If you always want right time values interpreted as "seconds since
79 # the epoch" (counting leap seconds)", use
80 #       REDO=           right_only
81 # below.  If you want both sets of data available, with leap seconds not
82 # counted normally, use
83 #       REDO=           posix_right
84 # below.  If you want both sets of data available, with leap seconds counted
85 # normally, use
86 #       REDO=           right_posix
87 # below.  POSIX mandates that leap seconds not be counted; for compatibility
88 # with it, use "posix_only" or "posix_right".
89
90 REDO=           posix_right
91
92 # If you want out-of-scope and often-wrong data from the file 'backzone', use
93 #       PACKRATDATA=    backzone
94 # To omit this data, use
95 #       PACKRATDATA=
96
97 PACKRATDATA=
98
99 # Since "." may not be in PATH...
100
101 YEARISTYPE=     ./yearistype
102
103 # Non-default libraries needed to link.
104 # Add -lintl if you want to use 'gettext' on Solaris.
105 LDLIBS=
106
107 # Add the following to the end of the "CFLAGS=" line as needed.
108 #  -DBIG_BANG=-9999999LL if the Big Bang occurred at time -9999999 (see zic.c)
109 #  -DHAVE_DECL_ASCTIME_R=0 if <time.h> does not declare asctime_r
110 #  -DHAVE_DIRECT_H if mkdir needs <direct.h> (MS-Windows)
111 #  -DHAVE_DOS_FILE_NAMES if file names have drive specifiers etc. (MS-DOS)
112 #  -DHAVE_GETTEXT=1 if 'gettext' works (GNU, Linux, Solaris); also see LDLIBS
113 #  -DHAVE_INCOMPATIBLE_CTIME_R=1 if your system's time.h declares
114 #       ctime_r and asctime_r incompatibly with the POSIX standard (Solaris 8).
115 #  -DHAVE_INTTYPES_H=1 if you have a pre-C99 compiler with "inttypes.h"
116 #  -DHAVE_LINK=0 if your system lacks a link function
117 #  -DHAVE_LOCALTIME_R=0 if your system lacks a localtime_r function
118 #  -DHAVE_LOCALTIME_RZ=0 if you do not want zdump to use localtime_rz
119 #       This defaults to 1 if a working localtime_rz seems to be available.
120 #       localtime_rz can make zdump significantly faster, but is nonstandard.
121 #  -DHAVE_POSIX_DECLS=0 if your system's include files do not declare
122 #       functions like 'link' or variables like 'tzname' required by POSIX
123 #  -DHAVE_STDINT_H=1 if you have a pre-C99 compiler with "stdint.h"
124 #  -DHAVE_STRFTIME_L=1 if <time.h> declares locale_t and strftime_l
125 #       This defaults to 0 if _POSIX_VERSION < 200809, 1 otherwise.
126 #  -DHAVE_STRDUP=0 if your system lacks the strdup function
127 #  -DHAVE_SYMLINK=0 if your system lacks the symlink function
128 #  -DHAVE_SYS_STAT_H=0 if your compiler lacks a "sys/stat.h"
129 #  -DHAVE_SYS_WAIT_H=0 if your compiler lacks a "sys/wait.h"
130 #  -DHAVE_TZSET=0 if your system lacks a tzset function
131 #  -DHAVE_UNISTD_H=0 if your compiler lacks a "unistd.h" (Microsoft C++ 7?)
132 #  -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU=1
133 #       if you do not want run time warnings about formats that may cause
134 #       year 2000 grief
135 #  -Dssize_t=long on ancient hosts that lack ssize_t
136 #  -DTHREAD_SAFE=1 to make localtime.c thread-safe, as POSIX requires;
137 #       not needed by the main-program tz code, which is single-threaded.
138 #       Append other compiler flags as needed, e.g., -pthread on GNU/Linux.
139 #  -Dtime_tz=\"T\" to use T as the time_t type, rather than the system time_t
140 #  -DTZ_DOMAIN=\"foo\" to use "foo" for gettext domain name; default is "tz"
141 #  -DTZ_DOMAINDIR=\"/path\" to use "/path" for gettext directory;
142 #       the default is system-supplied, typically "/usr/lib/locale"
143 #  -DTZDEFRULESTRING=\",date/time,date/time\" to default to the specified
144 #       DST transitions if the time zone files cannot be accessed
145 #  -DUNINIT_TRAP=1 if reading uninitialized storage can cause problems
146 #       other than simply getting garbage data
147 #  -DUSE_LTZ=0 to build zdump with the system time zone library
148 #       Also set TZDOBJS=zdump.o and CHECK_TIME_T_ALTERNATIVES= below.
149 #  -DZIC_MAX_ABBR_LEN_WO_WARN=3
150 #       (or some other number) to set the maximum time zone abbreviation length
151 #       that zic will accept without a warning (the default is 6)
152 #  $(GCC_DEBUG_FLAGS) if you are using recent GCC and want lots of checking
153 GCC_DEBUG_FLAGS = -Dlint -g3 -O3 -fno-common -fstrict-aliasing \
154         -Wall -Wextra \
155         -Wbad-function-cast -Wcast-align -Wdate-time \
156         -Wdeclaration-after-statement \
157         -Wdouble-promotion \
158         -Wformat=2 -Winit-self -Wjump-misses-init \
159         -Wlogical-op -Wmissing-prototypes -Wnested-externs \
160         -Wold-style-definition -Woverlength-strings -Wpointer-arith \
161         -Wshadow -Wstrict-prototypes -Wsuggest-attribute=const \
162         -Wsuggest-attribute=format -Wsuggest-attribute=noreturn \
163         -Wsuggest-attribute=pure -Wtrampolines \
164         -Wunused -Wwrite-strings \
165         -Wno-address -Wno-format-nonliteral -Wno-sign-compare \
166         -Wno-type-limits -Wno-unused-parameter
167 #
168 # If you want to use System V compatibility code, add
169 #       -DUSG_COMPAT
170 # to the end of the "CFLAGS=" line.  This arrange for "timezone" and "daylight"
171 # variables to be kept up-to-date by the time conversion functions.  Neither
172 # "timezone" nor "daylight" is described in X3J11's work.
173 #
174 # If your system has a "GMT offset" field in its "struct tm"s
175 # (or if you decide to add such a field in your system's "time.h" file),
176 # add the name to a define such as
177 #       -DTM_GMTOFF=tm_gmtoff
178 # to the end of the "CFLAGS=" line.  If not defined, the code attempts to
179 # guess TM_GMTOFF from other macros; define NO_TM_GMTOFF to suppress this.
180 # Similarly, if your system has a "zone abbreviation" field, define
181 #       -DTM_ZONE=tm_zone
182 # and define NO_TM_ZONE to suppress any guessing.  These two fields are not
183 # required by POSIX, but are widely available on GNU/Linux and BSD systems.
184 #
185 # If you want functions that were inspired by early versions of X3J11's work,
186 # add
187 #       -DSTD_INSPIRED
188 # to the end of the "CFLAGS=" line.  This arranges for the functions
189 # "tzsetwall", "offtime", "timelocal", "timegm", "timeoff",
190 # "posix2time", and "time2posix" to be added to the time conversion library.
191 # "tzsetwall" is like "tzset" except that it arranges for local wall clock
192 # time (rather than the time specified in the TZ environment variable)
193 # to be used.
194 # "offtime" is like "gmtime" except that it accepts a second (long) argument
195 # that gives an offset to add to the time_t when converting it.
196 # "timelocal" is equivalent to "mktime".
197 # "timegm" is like "timelocal" except that it turns a struct tm into
198 # a time_t using UT (rather than local time as "timelocal" does).
199 # "timeoff" is like "timegm" except that it accepts a second (long) argument
200 # that gives an offset to use when converting to a time_t.
201 # "posix2time" and "time2posix" are described in an included manual page.
202 # X3J11's work does not describe any of these functions.
203 # Sun has provided "tzsetwall", "timelocal", and "timegm" in SunOS 4.0.
204 # These functions may well disappear in future releases of the time
205 # conversion package.
206 #
207 # If you don't want functions that were inspired by NetBSD, add
208 #       -DNETBSD_INSPIRED=0
209 # to the end of the "CFLAGS=" line.  Otherwise, the functions
210 # "localtime_rz", "mktime_z", "tzalloc", and "tzfree" are added to the
211 # time library, and if STD_INSPIRED is also defined the functions
212 # "posix2time_z" and "time2posix_z" are added as well.
213 # The functions ending in "_z" (or "_rz") are like their unsuffixed
214 # (or suffixed-by-"_r") counterparts, except with an extra first
215 # argument of opaque type timezone_t that specifies the time zone.
216 # "tzalloc" allocates a timezone_t value, and "tzfree" frees it.
217 #
218 # If you want to allocate state structures in localtime, add
219 #       -DALL_STATE
220 # to the end of the "CFLAGS=" line.  Storage is obtained by calling malloc.
221 #
222 # If you want an "altzone" variable (a la System V Release 3.1), add
223 #       -DALTZONE
224 # to the end of the "CFLAGS=" line.
225 # This variable is not described in X3J11's work.
226 #
227 # NIST-PCTS:151-2, Version 1.4, (1993-12-03) is a test suite put
228 # out by the National Institute of Standards and Technology
229 # which claims to test C and Posix conformance.  If you want to pass PCTS, add
230 #       -DPCTS
231 # to the end of the "CFLAGS=" line.
232 #
233 # If you want strict compliance with XPG4 as of 1994-04-09, add
234 #       -DXPG4_1994_04_09
235 # to the end of the "CFLAGS=" line.  This causes "strftime" to always return
236 # 53 as a week number (rather than 52 or 53) for those days in January that
237 # before the first Monday in January when a "%V" format is used and January 1
238 # falls on a Friday, Saturday, or Sunday.
239
240 CFLAGS=
241
242 # Linker flags.  Default to $(LFLAGS) for backwards compatibility
243 # to tzcode2012h and earlier.
244
245 LDFLAGS=        $(LFLAGS)
246
247 # For leap seconds, this Makefile uses LEAPSECONDS='-L leapseconds' in
248 # submake command lines.  The default is no leap seconds.
249
250 LEAPSECONDS=
251
252 # The zic command and its arguments.
253
254 zic=            ./zic
255 ZIC=            $(zic) $(ZFLAGS)
256
257 ZFLAGS=
258
259 # How to use zic to install tzdata binary files.
260
261 ZIC_INSTALL=    $(ZIC) -y $(YEARISTYPE) -d $(DESTDIR)$(TZDIR) $(LEAPSECONDS)
262
263 # The name of a Posix-compliant 'awk' on your system.
264 AWK=            awk
265
266 # The full path name of a Posix-compliant shell, preferably one that supports
267 # the Korn shell's 'select' statement as an extension.
268 # These days, Bash is the most popular.
269 # It should be OK to set this to /bin/sh, on platforms where /bin/sh
270 # lacks 'select' or doesn't completely conform to Posix, but /bin/bash
271 # is typically nicer if it works.
272 KSHELL=         /bin/bash
273
274 # The path where SGML DTDs are kept and the catalog file(s) to use when
275 # validating.  The default is appropriate for Ubuntu 13.10.
276 SGML_TOPDIR= /usr
277 SGML_DTDDIR= $(SGML_TOPDIR)/share/xml/w3c-sgml-lib/schema/dtd
278 SGML_SEARCH_PATH= $(SGML_DTDDIR)/REC-html401-19991224
279 SGML_CATALOG_FILES= \
280   $(SGML_TOPDIR)/share/doc/w3-recs/html/www.w3.org/TR/1999/REC-html401-19991224/HTML4.cat
281
282 # The name, arguments and environment of a program to validate your web pages.
283 # See <http://www.jclark.com/sp/> for a validator, and
284 # <http://validator.w3.org/source/> for a validation library.
285 VALIDATE = nsgmls
286 VALIDATE_FLAGS = -s -B -wall -wno-unused-param
287 VALIDATE_ENV = \
288   SGML_CATALOG_FILES=$(SGML_CATALOG_FILES) \
289   SGML_SEARCH_PATH=$(SGML_SEARCH_PATH) \
290   SP_CHARSET_FIXED=YES \
291   SP_ENCODING=UTF-8
292
293 # This expensive test requires USE_LTZ.
294 # To suppress it, define this macro to be empty.
295 CHECK_TIME_T_ALTERNATIVES = check_time_t_alternatives
296
297 # SAFE_CHAR is a regular expression that matches a safe character.
298 # Some parts of this distribution are limited to safe characters;
299 # others can use any UTF-8 character.
300 # For now, the safe characters are a safe subset of ASCII.
301 # The caller must set the shell variable 'sharp' to the character '#',
302 # since Makefile macros cannot contain '#'.
303 # TAB_CHAR is a single tab character, in single quotes.
304 TAB_CHAR=       '       '
305 SAFE_CHARSET1=  $(TAB_CHAR)' !\"'$$sharp'$$%&'\''()*+,./0123456789:;<=>?@'
306 SAFE_CHARSET2=  'ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\^_`'
307 SAFE_CHARSET3=  'abcdefghijklmnopqrstuvwxyz{|}~'
308 SAFE_CHARSET=   $(SAFE_CHARSET1)$(SAFE_CHARSET2)$(SAFE_CHARSET3)
309 SAFE_CHAR=      '[]'$(SAFE_CHARSET)'-]'
310
311 # OK_CHAR matches any character allowed in the distributed files.
312 # This is the same as SAFE_CHAR, except that multibyte letters are
313 # also allowed so that commentary can contain people's names and quote
314 # non-English sources.  For non-letters the sources are limited to
315 # ASCII renderings for the convenience of maintainers whose text editors
316 # mishandle UTF-8 by default (e.g., XEmacs 21.4.22).
317 OK_CHAR=        '[][:alpha:]'$(SAFE_CHARSET)'-]'
318
319 # SAFE_LINE matches a line of safe characters.
320 # SAFE_SHARP_LINE is similar, except any OK character can follow '#';
321 # this is so that comments can contain non-ASCII characters.
322 # OK_LINE matches a line of OK characters.
323 SAFE_LINE=      '^'$(SAFE_CHAR)'*$$'
324 SAFE_SHARP_LINE='^'$(SAFE_CHAR)'*('$$sharp$(OK_CHAR)'*)?$$'
325 OK_LINE=        '^'$(OK_CHAR)'*$$'
326
327 # Flags to give 'tar' when making a distribution.
328 # Try to use flags appropriate for GNU tar.
329 GNUTARFLAGS=    --numeric-owner --owner=0 --group=0 --mode=go+u,go-w
330 TARFLAGS=       `if tar $(GNUTARFLAGS) --version >/dev/null 2>&1; \
331                  then echo $(GNUTARFLAGS); \
332                  else :; \
333                  fi`
334
335 # Flags to give 'gzip' when making a distribution.
336 GZIPFLAGS=      -9n
337
338 ###############################################################################
339
340 #MAKE=          make
341
342 cc=             cc
343 CC=             $(cc) -DTZDIR=\"$(TZDIR)\"
344
345 AR=             ar
346
347 # ':' on typical hosts; 'ranlib' on the ancient hosts that still need ranlib.
348 RANLIB=         :
349
350 TZCOBJS=        zic.o
351 TZDOBJS=        zdump.o localtime.o asctime.o
352 DATEOBJS=       date.o localtime.o strftime.o asctime.o
353 LIBSRCS=        localtime.c asctime.c difftime.c
354 LIBOBJS=        localtime.o asctime.o difftime.o
355 HEADERS=        tzfile.h private.h
356 NONLIBSRCS=     zic.c zdump.c
357 NEWUCBSRCS=     date.c strftime.c
358 SOURCES=        $(HEADERS) $(LIBSRCS) $(NONLIBSRCS) $(NEWUCBSRCS) \
359                         tzselect.ksh workman.sh
360 MANS=           newctime.3 newstrftime.3 newtzset.3 time2posix.3 \
361                         tzfile.5 tzselect.8 zic.8 zdump.8
362 MANTXTS=        newctime.3.txt newstrftime.3.txt newtzset.3.txt \
363                         time2posix.3.txt \
364                         tzfile.5.txt tzselect.8.txt zic.8.txt zdump.8.txt \
365                         date.1.txt
366 COMMON=         CONTRIBUTING LICENSE Makefile NEWS README Theory
367 WEB_PAGES=      tz-art.htm tz-how-to.html tz-link.htm
368 DOCS=           $(MANS) date.1 $(MANTXTS) $(WEB_PAGES)
369 PRIMARY_YDATA=  africa antarctica asia australasia \
370                 europe northamerica southamerica
371 YDATA=          $(PRIMARY_YDATA) pacificnew etcetera backward
372 NDATA=          systemv factory
373 TDATA=          $(YDATA) $(NDATA)
374 ZONETABLES=     zone1970.tab zone.tab
375 TABDATA=        iso3166.tab leapseconds $(ZONETABLES)
376 LEAP_DEPS=      leapseconds.awk leap-seconds.list
377 DATA=           $(YDATA) $(NDATA) backzone $(TABDATA) \
378                         leap-seconds.list yearistype.sh
379 AWK_SCRIPTS=    checklinks.awk checktab.awk leapseconds.awk
380 MISC=           $(AWK_SCRIPTS) zoneinfo2tdf.pl
381 ENCHILADA=      $(COMMON) $(DOCS) $(SOURCES) $(DATA) $(MISC)
382
383 # And for the benefit of csh users on systems that assume the user
384 # shell should be used to handle commands in Makefiles. . .
385
386 SHELL=          /bin/sh
387
388 all:            tzselect yearistype zic zdump libtz.a $(TABDATA)
389
390 ALL:            all date $(ENCHILADA)
391
392 install:        all $(DATA) $(REDO) $(MANS)
393                 mkdir -p $(DESTDIR)$(ETCDIR) $(DESTDIR)$(TZDIR) \
394                         $(DESTDIR)$(LIBDIR) \
395                         $(DESTDIR)$(MANDIR)/man3 $(DESTDIR)$(MANDIR)/man5 \
396                         $(DESTDIR)$(MANDIR)/man8
397                 $(ZIC_INSTALL) -l $(LOCALTIME) -p $(POSIXRULES)
398                 cp -f iso3166.tab $(ZONETABLES) $(DESTDIR)$(TZDIR)/.
399                 cp tzselect zic zdump $(DESTDIR)$(ETCDIR)/.
400                 cp libtz.a $(DESTDIR)$(LIBDIR)/.
401                 $(RANLIB) $(DESTDIR)$(LIBDIR)/libtz.a
402                 cp -f newctime.3 newtzset.3 $(DESTDIR)$(MANDIR)/man3/.
403                 cp -f tzfile.5 $(DESTDIR)$(MANDIR)/man5/.
404                 cp -f tzselect.8 zdump.8 zic.8 $(DESTDIR)$(MANDIR)/man8/.
405
406 INSTALL:        ALL install date.1
407                 mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man1
408                 cp date $(DESTDIR)$(BINDIR)/.
409                 cp -f date.1 $(DESTDIR)$(MANDIR)/man1/.
410
411 version.h:
412                 (echo 'static char const PKGVERSION[]="($(PACKAGE)) ";' && \
413                  echo 'static char const TZVERSION[]="$(VERSION)";' && \
414                  echo 'static char const REPORT_BUGS_TO[]="$(BUGEMAIL)";') >$@
415
416 zdump:          $(TZDOBJS)
417                 $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(TZDOBJS) $(LDLIBS)
418
419 zic:            $(TZCOBJS)
420                 $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(TZCOBJS) $(LDLIBS)
421
422 yearistype:     yearistype.sh
423                 cp yearistype.sh yearistype
424                 chmod +x yearistype
425
426 leapseconds:    $(LEAP_DEPS)
427                 $(AWK) -f leapseconds.awk leap-seconds.list >$@
428
429 # Arguments to pass to submakes of install_data.
430 # They can be overridden by later submake arguments.
431 INSTALLARGS = \
432  DESTDIR=$(DESTDIR) \
433  LEAPSECONDS='$(LEAPSECONDS)' \
434  PACKRATDATA='$(PACKRATDATA)' \
435  TZDIR=$(TZDIR) \
436  YEARISTYPE=$(YEARISTYPE) \
437  ZIC='$(ZIC)'
438
439 # 'make install_data' installs one set of tz binary files.
440 # It can be tailored by setting LEAPSECONDS, PACKRATDATA, etc.
441 install_data:   zic leapseconds yearistype $(PACKRATDATA) $(TDATA)
442                 $(ZIC_INSTALL) $(TDATA)
443                 $(AWK) '/^Rule/' $(TDATA) | $(ZIC_INSTALL) - $(PACKRATDATA)
444
445 posix_only:
446                 $(MAKE) $(INSTALLARGS) LEAPSECONDS= install_data
447
448 right_only:
449                 $(MAKE) $(INSTALLARGS) LEAPSECONDS='-L leapseconds' \
450                         install_data
451
452 # In earlier versions of this makefile, the other two directories were
453 # subdirectories of $(TZDIR).  However, this led to configuration errors.
454 # For example, with posix_right under the earlier scheme,
455 # TZ='right/Australia/Adelaide' got you localtime with leap seconds,
456 # but gmtime without leap seconds, which led to problems with applications
457 # like sendmail that subtract gmtime from localtime.
458 # Therefore, the other two directories are now siblings of $(TZDIR).
459 # You must replace all of $(TZDIR) to switch from not using leap seconds
460 # to using them, or vice versa.
461 right_posix:    right_only
462                 rm -fr $(DESTDIR)$(TZDIR)-leaps
463                 ln -s $(TZDIR_BASENAME) $(DESTDIR)$(TZDIR)-leaps || \
464                   $(MAKE) $(INSTALLARGS) TZDIR=$(TZDIR)-leaps right_only
465                 $(MAKE) $(INSTALLARGS) TZDIR=$(TZDIR)-posix posix_only
466
467 posix_right:    posix_only
468                 rm -fr $(DESTDIR)$(TZDIR)-posix
469                 ln -s $(TZDIR_BASENAME) $(DESTDIR)$(TZDIR)-posix || \
470                   $(MAKE) $(INSTALLARGS) TZDIR=$(TZDIR)-posix posix_only
471                 $(MAKE) $(INSTALLARGS) TZDIR=$(TZDIR)-leaps right_only
472
473 # This obsolescent rule is present for backwards compatibility with
474 # tz releases 2014g through 2015g.  It should go away eventually.
475 posix_packrat:
476                 $(MAKE) $(INSTALLARGS) PACKRATDATA=backzone posix_only
477
478 zones:          $(REDO)
479
480 libtz.a:        $(LIBOBJS)
481                 $(AR) ru $@ $(LIBOBJS)
482                 $(RANLIB) $@
483
484 date:           $(DATEOBJS)
485                 $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(DATEOBJS) $(LDLIBS)
486
487 tzselect:       tzselect.ksh
488                 sed \
489                         -e 's|#!/bin/bash|#!$(KSHELL)|g' \
490                         -e 's|AWK=[^}]*|AWK=$(AWK)|g' \
491                         -e 's|\(PKGVERSION\)=.*|\1='\''($(PACKAGE)) '\''|' \
492                         -e 's|\(REPORT_BUGS_TO\)=.*|\1=$(BUGEMAIL)|' \
493                         -e 's|TZDIR=[^}]*|TZDIR=$(TZDIR)|' \
494                         -e 's|\(TZVERSION\)=.*|\1=$(VERSION)|' \
495                         <$? >$@
496                 chmod +x $@
497
498 check:          check_character_set check_white_space check_links check_sorted \
499                   check_tables check_web
500
501 check_character_set: $(ENCHILADA)
502                 LC_ALL=en_US.utf8 && export LC_ALL && \
503                 sharp='#' && \
504                 ! grep -Env $(SAFE_LINE) Makefile $(MANS) date.1 $(MANTXTS) \
505                         $(MISC) $(SOURCES) $(WEB_PAGES) && \
506                 ! grep -Env $(SAFE_SHARP_LINE) $(TDATA) backzone \
507                         leapseconds yearistype.sh zone.tab && \
508                 ! grep -Env $(OK_LINE) $(ENCHILADA)
509
510 check_white_space: $(ENCHILADA)
511                 ! grep -En ' '$(TAB_CHAR)"|$$(printf '[\f\r\v]')" $(ENCHILADA)
512                 ! grep -n '[[:space:]]$$' $(ENCHILADA)
513
514 CHECK_CC_LIST = { n = split($$1,a,/,/); for (i=2; i<=n; i++) print a[1], a[i]; }
515
516 check_sorted: backward backzone iso3166.tab zone.tab zone1970.tab
517                 $(AWK) '/^Link/ {print $$3}' backward | LC_ALL=C sort -cu
518                 $(AWK) '/^Zone/ {print $$2}' backzone | LC_ALL=C sort -cu
519                 $(AWK) '/^[^#]/ {print $$1}' iso3166.tab | LC_ALL=C sort -cu
520                 $(AWK) '/^[^#]/ {print $$1}' zone.tab | LC_ALL=C sort -c
521                 $(AWK) '/^[^#]/ {print substr($$0, 1, 2)}' zone1970.tab | \
522                   LC_ALL=C sort -c
523                 $(AWK) '/^[^#]/ $(CHECK_CC_LIST)' zone1970.tab | \
524                   LC_ALL=C sort -cu
525
526 check_links:    checklinks.awk $(TDATA)
527                 $(AWK) -f checklinks.awk $(TDATA)
528
529 check_tables:   checktab.awk $(PRIMARY_YDATA) $(ZONETABLES)
530                 for tab in $(ZONETABLES); do \
531                   $(AWK) -f checktab.awk -v zone_table=$$tab $(PRIMARY_YDATA) \
532                     || exit; \
533                 done
534
535 check_web:      $(WEB_PAGES)
536                 $(VALIDATE_ENV) $(VALIDATE) $(VALIDATE_FLAGS) $(WEB_PAGES)
537
538 clean_misc:
539                 rm -f core *.o *.out \
540                   date tzselect version.h zdump zic yearistype libtz.a
541 clean:          clean_misc
542                 rm -fr tzpublic
543
544 maintainer-clean: clean
545                 @echo 'This command is intended for maintainers to use; it'
546                 @echo 'deletes files that may need special tools to rebuild.'
547                 rm -f leapseconds $(MANTXTS) *.asc *.tar.gz
548
549 names:
550                 @echo $(ENCHILADA)
551
552 public:         check check_public $(CHECK_TIME_T_ALTERNATIVES) \
553                 tarballs signatures
554
555 date.1.txt:     date.1
556 newctime.3.txt: newctime.3
557 newstrftime.3.txt: newstrftime.3
558 newtzset.3.txt: newtzset.3
559 time2posix.3.txt: time2posix.3
560 tzfile.5.txt:   tzfile.5
561 tzselect.8.txt: tzselect.8
562 zdump.8.txt:    zdump.8
563 zic.8.txt:      zic.8
564
565 $(MANTXTS):     workman.sh
566                 LC_ALL=C sh workman.sh `expr $@ : '\(.*\)\.txt$$'` >$@
567
568 # Set the time stamps to those of the git repository, if available,
569 # and if the files have not changed since then.
570 # This uses GNU 'touch' syntax 'touch -d@N FILE',
571 # where N is the number of seconds since 1970.
572 # If git or GNU 'touch' is absent, don't bother to sync with git timestamps.
573 # Also, set the timestamp of each prebuilt file like 'leapseconds'
574 # to be the maximum of the files it depends on.
575 set-timestamps.out: $(ENCHILADA)
576                 rm -f $@
577                 if files=`git ls-files $(ENCHILADA)` && \
578                    touch -md @1 test.out; then \
579                   rm -f test.out && \
580                   for file in $$files; do \
581                     if git diff --quiet $$file; then \
582                       time=`git log -1 --format='tformat:%ct' $$file` && \
583                       touch -cmd @$$time $$file; \
584                     else \
585                       echo >&2 "$$file: warning: does not match repository"; \
586                     fi || exit; \
587                   done; \
588                 fi
589                 touch -cmr `ls -t $(LEAP_DEPS) | sed 1q` leapseconds
590                 for file in `ls $(MANTXTS) | sed 's/\.txt$$//'`; do \
591                   touch -cmr `ls -t $$file workman.sh | sed 1q` $$file.txt || \
592                     exit; \
593                 done
594                 touch $@
595
596 # The zics below ensure that each data file can stand on its own.
597 # We also do an all-files run to catch links to links.
598
599 check_public:
600                 $(MAKE) maintainer-clean
601                 $(MAKE) "CFLAGS=$(GCC_DEBUG_FLAGS)" ALL
602                 mkdir tzpublic
603                 for i in $(TDATA) ; do \
604                   $(zic) -v -d tzpublic $$i 2>&1 || exit; \
605                 done
606                 $(zic) -v -d tzpublic $(TDATA)
607                 rm -fr tzpublic
608
609 # Check that the code works under various alternative
610 # implementations of time_t.
611 check_time_t_alternatives:
612                 if diff -q Makefile Makefile 2>/dev/null; then \
613                   quiet_option='-q'; \
614                 else \
615                   quiet_option=''; \
616                 fi && \
617                 zones=`$(AWK) '/^[^#]/ { print $$3 }' <zone1970.tab` && \
618                 for type in $(TIME_T_ALTERNATIVES); do \
619                   mkdir -p tzpublic/$$type && \
620                   $(MAKE) clean_misc && \
621                   $(MAKE) TOPDIR=`pwd`/tzpublic/$$type \
622                     CFLAGS='$(CFLAGS) -Dtime_tz='"'$$type'" \
623                     REDO='$(REDO)' \
624                     install && \
625                   diff $$quiet_option -r \
626                     tzpublic/int64_t/etc/zoneinfo \
627                     tzpublic/$$type/etc/zoneinfo && \
628                   case $$type in \
629                   int32_t) range=-2147483648,2147483647;; \
630                   uint32_t) range=0,4294967296;; \
631                   int64_t) continue;; \
632                   *u*) range=0,10000000000;; \
633                   *) range=-10000000000,10000000000;; \
634                   esac && \
635                   echo checking $$type zones ... && \
636                   tzpublic/int64_t/etc/zdump -V -t $$range $$zones \
637                       >tzpublic/int64_t.out && \
638                   tzpublic/$$type/etc/zdump -V -t $$range $$zones \
639                       >tzpublic/$$type.out && \
640                   diff -u tzpublic/int64_t.out tzpublic/$$type.out \
641                     || exit; \
642                 done
643                 rm -fr tzpublic
644
645 tarballs:       tzcode$(VERSION).tar.gz tzdata$(VERSION).tar.gz
646
647 tzcode$(VERSION).tar.gz: set-timestamps.out
648                 LC_ALL=C && export LC_ALL && \
649                 tar $(TARFLAGS) -cf - \
650                     $(COMMON) $(DOCS) $(SOURCES) | \
651                   gzip $(GZIPFLAGS) > $@
652
653 tzdata$(VERSION).tar.gz: set-timestamps.out
654                 LC_ALL=C && export LC_ALL && \
655                 tar $(TARFLAGS) -cf - $(COMMON) $(DATA) $(MISC) | \
656                   gzip $(GZIPFLAGS) > $@
657
658 signatures:     tzcode$(VERSION).tar.gz.asc tzdata$(VERSION).tar.gz.asc
659
660 tzcode$(VERSION).tar.gz.asc: tzcode$(VERSION).tar.gz
661                 gpg --armor --detach-sign $?
662
663 tzdata$(VERSION).tar.gz.asc: tzdata$(VERSION).tar.gz
664                 gpg --armor --detach-sign $?
665
666 typecheck:
667                 $(MAKE) clean
668                 for i in "long long" unsigned; \
669                 do \
670                         $(MAKE) CFLAGS="-DTYPECHECK -D__time_t_defined -D_TIME_T \"-Dtime_t=$$i\"" ; \
671                         ./zdump -v Europe/Rome ; \
672                         $(MAKE) clean ; \
673                 done
674
675 zonenames:      $(TDATA)
676                 @$(AWK) '/^Zone/ { print $$2 } /^Link/ { print $$3 }' $(TDATA)
677
678 asctime.o:      private.h tzfile.h
679 date.o:         private.h
680 difftime.o:     private.h
681 localtime.o:    private.h tzfile.h
682 strftime.o:     private.h tzfile.h
683 zdump.o:        version.h
684 zic.o:          private.h tzfile.h version.h
685
686 .KEEP_STATE:
687
688 .PHONY: ALL INSTALL all
689 .PHONY: check check_character_set check_links
690 .PHONY: check_public check_sorted check_tables
691 .PHONY: check_time_t_alternatives check_web check_white_space clean clean_misc
692 .PHONY: install install_data maintainer-clean names
693 .PHONY: posix_only posix_packrat posix_right
694 .PHONY: public right_only right_posix signatures tarballs typecheck
695 .PHONY: zonenames zones