1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-11-21 20:34:27 +00:00
Files
amiga-tz/Makefile

611 lines
22 KiB
Makefile
Raw Normal View History

# This file is in the public domain, so clarified as of
# 2009-05-17 by Arthur David Olson.
# Package name for the code distribution.
PACKAGE= tzcode
# Version numbers of the code and data distributions.
VERSION= 2014e
# Email address for bug reports.
BUGEMAIL= tz@iana.org
# Change the line below for your time zone (after finding the zone you want in
# the time zone files, or adding it to a time zone file).
# Alternately, if you discover you've got the wrong time zone, you can just
# zic -l rightzone
# to correct things.
# Use the command
# make zonenames
# to get a list of the values you can use for LOCALTIME.
LOCALTIME= GMT
# If you want something other than Eastern United States time as a template
# for handling POSIX-style time zone environment variables,
# change the line below (after finding the zone you want in the
# time zone files, or adding it to a time zone file).
# (When a POSIX-style environment variable is handled, the rules in the
# template file are used to determine "spring forward" and "fall back" days and
# times; the environment variable itself specifies UT offsets of standard and
# summer time.)
# Alternately, if you discover you've got the wrong time zone, you can just
# zic -p rightzone
# to correct things.
# Use the command
# make zonenames
# to get a list of the values you can use for POSIXRULES.
# If you want POSIX compatibility, use "America/New_York".
POSIXRULES= America/New_York
# Also see TZDEFRULESTRING below, which takes effect only
# if the time zone files cannot be accessed.
# Everything gets put in subdirectories of. . .
TOPDIR= /usr/local
# "Compiled" time zone information is placed in the "TZDIR" directory
# (and subdirectories).
# Use an absolute path name for TZDIR unless you're just testing the software.
TZDIR_BASENAME= zoneinfo
TZDIR= $(TOPDIR)/etc/$(TZDIR_BASENAME)
# Types to try, as an alternative to time_t. int64_t should be first.
TIME_T_ALTERNATIVES= int64_t int32_t uint32_t uint64_t
# The "tzselect", "zic", and "zdump" commands get installed in. . .
ETCDIR= $(TOPDIR)/etc
# If you "make INSTALL", the "date" command gets installed in. . .
BINDIR= $(TOPDIR)/bin
# Manual pages go in subdirectories of. . .
MANDIR= $(TOPDIR)/man
# Library functions are put in an archive in LIBDIR.
LIBDIR= $(TOPDIR)/lib
# If you always want time values interpreted as "seconds since the epoch
# (not counting leap seconds)", use
# REDO= posix_only
# below. If you always want right time values interpreted as "seconds since
# the epoch" (counting leap seconds)", use
# REDO= right_only
# below. If you want both sets of data available, with leap seconds not
# counted normally, use
# REDO= posix_right
# below. If you want both sets of data available, with leap seconds counted
# normally, use
# REDO= right_posix
# below.
# POSIX mandates that leap seconds not be counted; for compatibility with it,
# use either "posix_only" or "posix_right".
REDO= posix_right
# Since "." may not be in PATH...
YEARISTYPE= ./yearistype
# Non-default libraries needed to link.
# Add -lintl if you want to use 'gettext' on Solaris.
LDLIBS=
# Add the following to the end of the "CFLAGS=" line as needed.
# -DBIG_BANG=-9999999LL if the Big Bang occurred at time -9999999 (see zic.c)
# -DHAVE_ADJTIME=0 if 'adjtime' does not exist (SVR0?)
Port to NetBSD, where, e.g., 'time_t' is wider than 'long'. I audited the code and fixed as many width-asssumptions as I could find, including several places where the code assumed that 'time_t' was no wider than 'long'; this assumption is not true on 32-bit NetBSD platforms. This caught every problem that is already fixed in the NetBSD zic.c, and caught quite a few more. * Makefile: Add comments re HAVE_DOS_FILE_NAMES and HAVE_INTTYPES_H. * date.c (checkfinal, netsettime): Don't use 'long' where 'int' will do. * difftime.c (difftime): Mark with ATTRIBUTE_CONST. Use uintmax_t, not unsigned long, for the widest unsigned integer type. Use long double, not double, if time_t is wider than uintmax_t; this can in theory help on nonstandard platforms, such as GCC with 64-bit uintmax_t and 128-bit __int128_t. * localtime.c (struct ttinfo.tt_gmtoff, struct rule.r_time) (detzcode, getsecs, getoffset, gmtsub, localsub, increment_overflow32) (normalize_overflow32, time1, time2, timesub, transtime, tzparse) (time2sub, timeoff, gtime): * tzfile.h (SECSPERDAY): * zdump.c (SECSPERDAY): * zic.c (convert, puttzcode): Use int_fast32_t, not long, when all we care is that values up to 2**31 can be stored. This doesn't fix any bugs, but it allows more opportunity for compiler optimization. (struct lsinfo.ls_corr, timesub, leapcorr): Use int_fast64_t, not long, when values up to 2**63 can be stored. (timesub): Make it clearer when we are truncating 0.5 to 0. (increment_overflow32): Rename from long_increment_overflow. All uses changed. (normalize_overflow32): Rename from long_normalize_overflow. All uses changed. * private.h (HAVE_INTTYPES_H, ATTRIBUTE_CONST): New macros. Include <inttypes.h> if HAVE_INTTYPES_H. (INT_FAST64_MIN, INT_FAST64_MAX, SCNdFAST64, int_fast32_t, PRIdMAX) (uintmax_t, PRIuMAX, _Noreturn): Define to reasonable values if it's an older compiler. * scheck.c (scheck): Add support for arbitrary formats, such as those that SCNdFAST64 can expand to, at the price of no longer supporting weird conversion specs like "%[%]". * strftime.c (_fmt): Use intmax_t and uintmax_t to format time_t, not long and unsigned long. * zdump.c (int_fast32_t, intmax_t, PRIdMAX, SCNdMAX): Define for pre-C99 compilers, like private.h does. (delta, yeartot, main): Use intmax_t, not long. (hunt): Use time_t, not long, since the diff must be nonnegative. (tformat): Allow for time_t wider than long. * zic.c (ZIC_MIN, ZIC_MAX, SCNdZIC): New macros. (OFFSET_STRLEN_MAXIMUM, RULE_STRLEN_MAXIMUM): Remove. (struct rule): Make r_loyear, r_hiyear, r_tod, r_stdoff, z_gmtoff, z_stdoff zic_t, not long. (addtype, gethms, oadd, rpytime, tadd, gmtoffs, corr, inleap) (stringoffset, stringrule, outzone, addtype, adjleap, rpytime) (LDAYSPERWEEK): Use zic_t, not long. (leapminyear, leapmaxyear, min_year, max_year, rulesub, updateminmax) (outzone, rpytime): Use zic_t, not int. (usage): Now _Noreturn. (main): Use S_IWGRP, not 'unix', to determine whether to call umask. (writezone): Omit unnecessary cast. (mkdirs): Use HAVE_DOS_FILE_NAMES, not 'unix', to determine whether to parse DOS file anmes. (eitol): Remove; no longer needed.
2013-05-27 21:26:18 -07:00
# -DHAVE_DOS_FILE_NAMES if file names have drive specifiers etc. (MS-DOS)
# -DHAVE_GETTEXT=1 if 'gettext' works (GNU, Linux, Solaris); also see LDLIBS
# -DHAVE_INCOMPATIBLE_CTIME_R=1 if your system's time.h declares
# ctime_r and asctime_r incompatibly with the POSIX standard (Solaris 8).
Port to NetBSD, where, e.g., 'time_t' is wider than 'long'. I audited the code and fixed as many width-asssumptions as I could find, including several places where the code assumed that 'time_t' was no wider than 'long'; this assumption is not true on 32-bit NetBSD platforms. This caught every problem that is already fixed in the NetBSD zic.c, and caught quite a few more. * Makefile: Add comments re HAVE_DOS_FILE_NAMES and HAVE_INTTYPES_H. * date.c (checkfinal, netsettime): Don't use 'long' where 'int' will do. * difftime.c (difftime): Mark with ATTRIBUTE_CONST. Use uintmax_t, not unsigned long, for the widest unsigned integer type. Use long double, not double, if time_t is wider than uintmax_t; this can in theory help on nonstandard platforms, such as GCC with 64-bit uintmax_t and 128-bit __int128_t. * localtime.c (struct ttinfo.tt_gmtoff, struct rule.r_time) (detzcode, getsecs, getoffset, gmtsub, localsub, increment_overflow32) (normalize_overflow32, time1, time2, timesub, transtime, tzparse) (time2sub, timeoff, gtime): * tzfile.h (SECSPERDAY): * zdump.c (SECSPERDAY): * zic.c (convert, puttzcode): Use int_fast32_t, not long, when all we care is that values up to 2**31 can be stored. This doesn't fix any bugs, but it allows more opportunity for compiler optimization. (struct lsinfo.ls_corr, timesub, leapcorr): Use int_fast64_t, not long, when values up to 2**63 can be stored. (timesub): Make it clearer when we are truncating 0.5 to 0. (increment_overflow32): Rename from long_increment_overflow. All uses changed. (normalize_overflow32): Rename from long_normalize_overflow. All uses changed. * private.h (HAVE_INTTYPES_H, ATTRIBUTE_CONST): New macros. Include <inttypes.h> if HAVE_INTTYPES_H. (INT_FAST64_MIN, INT_FAST64_MAX, SCNdFAST64, int_fast32_t, PRIdMAX) (uintmax_t, PRIuMAX, _Noreturn): Define to reasonable values if it's an older compiler. * scheck.c (scheck): Add support for arbitrary formats, such as those that SCNdFAST64 can expand to, at the price of no longer supporting weird conversion specs like "%[%]". * strftime.c (_fmt): Use intmax_t and uintmax_t to format time_t, not long and unsigned long. * zdump.c (int_fast32_t, intmax_t, PRIdMAX, SCNdMAX): Define for pre-C99 compilers, like private.h does. (delta, yeartot, main): Use intmax_t, not long. (hunt): Use time_t, not long, since the diff must be nonnegative. (tformat): Allow for time_t wider than long. * zic.c (ZIC_MIN, ZIC_MAX, SCNdZIC): New macros. (OFFSET_STRLEN_MAXIMUM, RULE_STRLEN_MAXIMUM): Remove. (struct rule): Make r_loyear, r_hiyear, r_tod, r_stdoff, z_gmtoff, z_stdoff zic_t, not long. (addtype, gethms, oadd, rpytime, tadd, gmtoffs, corr, inleap) (stringoffset, stringrule, outzone, addtype, adjleap, rpytime) (LDAYSPERWEEK): Use zic_t, not long. (leapminyear, leapmaxyear, min_year, max_year, rulesub, updateminmax) (outzone, rpytime): Use zic_t, not int. (usage): Now _Noreturn. (main): Use S_IWGRP, not 'unix', to determine whether to call umask. (writezone): Omit unnecessary cast. (mkdirs): Use HAVE_DOS_FILE_NAMES, not 'unix', to determine whether to parse DOS file anmes. (eitol): Remove; no longer needed.
2013-05-27 21:26:18 -07:00
# -DHAVE_INTTYPES_H=1 if you have a pre-C99 compiler with "inttypes.h"
# -DHAVE_LINK=0 if your system lacks a link function
# -DHAVE_SETTIMEOFDAY=0 if settimeofday does not exist (SVR0?)
# -DHAVE_SETTIMEOFDAY=1 if settimeofday has just 1 arg (SVR4)
# -DHAVE_SETTIMEOFDAY=2 if settimeofday uses 2nd arg (4.3BSD)
# -DHAVE_SETTIMEOFDAY=3 if settimeofday ignores 2nd arg (4.4BSD)
# -DHAVE_STDINT_H=1 if you have a pre-C99 compiler with "stdint.h"
# -DHAVE_SYMLINK=0 if your system lacks the symlink function
# -DHAVE_SYS_STAT_H=0 if your compiler lacks a "sys/stat.h"
# -DHAVE_SYS_WAIT_H=0 if your compiler lacks a "sys/wait.h"
# -DHAVE_UNISTD_H=0 if your compiler lacks a "unistd.h" (Microsoft C++ 7?)
# -DHAVE_UTMPX_H=1 if your compiler has a "utmpx.h"
# -DLOCALE_HOME=\"path\" if locales are in "path", not "/usr/lib/locale"
# -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU=1
# if you do not want run time warnings about formats that may cause
# year 2000 grief
# -Dtime_tz=\"T\" to use T as the time_t type, rather than the system time_t
# -DTZ_DOMAIN=\"foo\" to use "foo" for gettext domain name; default is "tz"
# -TTZ_DOMAINDIR=\"/path\" to use "/path" for gettext directory;
# the default is system-supplied, typically "/usr/lib/locale"
# -DTZDEFRULESTRING=\",date/time,date/time\" to default to the specified
# DST transitions if the time zone files cannot be accessed
# -DZIC_MAX_ABBR_LEN_WO_WARN=3
# (or some other number) to set the maximum time zone abbreviation length
# that zic will accept without a warning (the default is 6)
# $(GCC_DEBUG_FLAGS) if you are using GCC and want lots of checking
Assume C89. * Makefile (GCC_DEBUG_FLAGS): Modernize for GCC 4.6.3 x86. * asctime.c (asctime_r, asctime): * date.c (main, dogmt, reset, wildinput, nondigit, oops, display) (timeout, sametm, netsettime): * difftime.c (difftime): * ialloc.c (icatalloc, icpyalloc): * localtime.c (detzcode, detzcode64, differ_by_repeat) (tzload, typesequiv, getzname, getnum, getsecs, getoffset) (getrule, transtime, tzparse, gmtload, tzsetwall, tzset) (localsub, localtime, localtime_r, gmtsub, gmtime, gmtime_r) (offtime, leaps_thru_end_of, timesub, ctime, ctime_r) (increment_overflow, long_increment_overflow) (normalize_overflow, long_normalize_overflow, tmcomp, time2sub) (time2, time1, mktime, timelocal, timegm, timeoff, gtime) (leapcorr, time2posix, posix2time): * scheck.c (scheck): * strftime.c (strftime, _fmt, _conv, _add, _yconv, _loc): * zdump.c (my_localtime, abbrok, usage, main, yeartot) (delta, abbr, dumptime): * zic.c (memcheck, eats, eat, error, warning, main) (dolink, itsdir, rcomp, associate, infile, gethms, inrule) (inzone, inzcont, inzsub, inleap, inlink, rulesub, convert) (convert64, puttzcode, puttzcode64, atcomp, is32, writezone, DO) (doabbr, updateminmax, stringoffset, stringrule, stringzone) (outzone, addtt, addtype, leapadd, yearistype, lowerit, ciequal) (itsabbr, byword, getfields, oadd, tadd, rpytime, newabbr) (mkdirs, eitol): Assume C89 or better. Mostly this consists of using function prototypes. In a few places, prototypes are required for portability to hosts where time_t does not promote to itself and where a preceding prototype does not override a definition. But while we're at it we might as well be consistent: it's safe to assume at-least-C89 these days. * ialloc.c (nonzero, imalloc, icalloc, irealloc, ifree, icfree): Remove; no longer needed now that we assume C89 or better. All callers changed to use malloc, calloc, realloc, free. * localtime.c (getzname, getqzname, leaps_thru_end_of, transtime): * zdump.c (delta, yeartot): * zic.c (eitol): Now pure. * private.h, zdump.c (ATTRIBUTE_PURE): New macro. * private.h (icalloc, imalloc, irealloc, icfree, ifree): Remove decls. * zic.c: Remove no-longer-necessary forward decls. (max_time, min_time): Now const. (setboundaries): Remove.
2012-10-12 07:53:12 -07:00
GCC_DEBUG_FLAGS = -Dlint -g3 -O3 -fno-common -fstrict-aliasing \
-Wall -Wextra \
-Wbad-function-cast -Wcast-align -Wcast-qual \
-Wdeclaration-after-statement \
-Wformat=2 -Winit-self -Wjump-misses-init \
Assume C89. * Makefile (GCC_DEBUG_FLAGS): Modernize for GCC 4.6.3 x86. * asctime.c (asctime_r, asctime): * date.c (main, dogmt, reset, wildinput, nondigit, oops, display) (timeout, sametm, netsettime): * difftime.c (difftime): * ialloc.c (icatalloc, icpyalloc): * localtime.c (detzcode, detzcode64, differ_by_repeat) (tzload, typesequiv, getzname, getnum, getsecs, getoffset) (getrule, transtime, tzparse, gmtload, tzsetwall, tzset) (localsub, localtime, localtime_r, gmtsub, gmtime, gmtime_r) (offtime, leaps_thru_end_of, timesub, ctime, ctime_r) (increment_overflow, long_increment_overflow) (normalize_overflow, long_normalize_overflow, tmcomp, time2sub) (time2, time1, mktime, timelocal, timegm, timeoff, gtime) (leapcorr, time2posix, posix2time): * scheck.c (scheck): * strftime.c (strftime, _fmt, _conv, _add, _yconv, _loc): * zdump.c (my_localtime, abbrok, usage, main, yeartot) (delta, abbr, dumptime): * zic.c (memcheck, eats, eat, error, warning, main) (dolink, itsdir, rcomp, associate, infile, gethms, inrule) (inzone, inzcont, inzsub, inleap, inlink, rulesub, convert) (convert64, puttzcode, puttzcode64, atcomp, is32, writezone, DO) (doabbr, updateminmax, stringoffset, stringrule, stringzone) (outzone, addtt, addtype, leapadd, yearistype, lowerit, ciequal) (itsabbr, byword, getfields, oadd, tadd, rpytime, newabbr) (mkdirs, eitol): Assume C89 or better. Mostly this consists of using function prototypes. In a few places, prototypes are required for portability to hosts where time_t does not promote to itself and where a preceding prototype does not override a definition. But while we're at it we might as well be consistent: it's safe to assume at-least-C89 these days. * ialloc.c (nonzero, imalloc, icalloc, irealloc, ifree, icfree): Remove; no longer needed now that we assume C89 or better. All callers changed to use malloc, calloc, realloc, free. * localtime.c (getzname, getqzname, leaps_thru_end_of, transtime): * zdump.c (delta, yeartot): * zic.c (eitol): Now pure. * private.h, zdump.c (ATTRIBUTE_PURE): New macro. * private.h (icalloc, imalloc, irealloc, icfree, ifree): Remove decls. * zic.c: Remove no-longer-necessary forward decls. (max_time, min_time): Now const. (setboundaries): Remove.
2012-10-12 07:53:12 -07:00
-Wmissing-declarations -Wmissing-noreturn -Wmissing-prototypes \
-Wnested-externs -Wno-address -Wno-cast-qual \
Assume C89. * Makefile (GCC_DEBUG_FLAGS): Modernize for GCC 4.6.3 x86. * asctime.c (asctime_r, asctime): * date.c (main, dogmt, reset, wildinput, nondigit, oops, display) (timeout, sametm, netsettime): * difftime.c (difftime): * ialloc.c (icatalloc, icpyalloc): * localtime.c (detzcode, detzcode64, differ_by_repeat) (tzload, typesequiv, getzname, getnum, getsecs, getoffset) (getrule, transtime, tzparse, gmtload, tzsetwall, tzset) (localsub, localtime, localtime_r, gmtsub, gmtime, gmtime_r) (offtime, leaps_thru_end_of, timesub, ctime, ctime_r) (increment_overflow, long_increment_overflow) (normalize_overflow, long_normalize_overflow, tmcomp, time2sub) (time2, time1, mktime, timelocal, timegm, timeoff, gtime) (leapcorr, time2posix, posix2time): * scheck.c (scheck): * strftime.c (strftime, _fmt, _conv, _add, _yconv, _loc): * zdump.c (my_localtime, abbrok, usage, main, yeartot) (delta, abbr, dumptime): * zic.c (memcheck, eats, eat, error, warning, main) (dolink, itsdir, rcomp, associate, infile, gethms, inrule) (inzone, inzcont, inzsub, inleap, inlink, rulesub, convert) (convert64, puttzcode, puttzcode64, atcomp, is32, writezone, DO) (doabbr, updateminmax, stringoffset, stringrule, stringzone) (outzone, addtt, addtype, leapadd, yearistype, lowerit, ciequal) (itsabbr, byword, getfields, oadd, tadd, rpytime, newabbr) (mkdirs, eitol): Assume C89 or better. Mostly this consists of using function prototypes. In a few places, prototypes are required for portability to hosts where time_t does not promote to itself and where a preceding prototype does not override a definition. But while we're at it we might as well be consistent: it's safe to assume at-least-C89 these days. * ialloc.c (nonzero, imalloc, icalloc, irealloc, ifree, icfree): Remove; no longer needed now that we assume C89 or better. All callers changed to use malloc, calloc, realloc, free. * localtime.c (getzname, getqzname, leaps_thru_end_of, transtime): * zdump.c (delta, yeartot): * zic.c (eitol): Now pure. * private.h, zdump.c (ATTRIBUTE_PURE): New macro. * private.h (icalloc, imalloc, irealloc, icfree, ifree): Remove decls. * zic.c: Remove no-longer-necessary forward decls. (max_time, min_time): Now const. (setboundaries): Remove.
2012-10-12 07:53:12 -07:00
-Wno-format-nonliteral -Wno-sign-compare -Wno-sign-conversion \
-Wno-type-limits \
-Wno-unused-parameter -Woverlength-strings -Wpointer-arith \
-Wshadow -Wstrict-prototypes -Wsuggest-attribute=const \
-Wsuggest-attribute=format -Wsuggest-attribute=noreturn \
-Wsuggest-attribute=pure -Wtrampolines \
Assume C89. * Makefile (GCC_DEBUG_FLAGS): Modernize for GCC 4.6.3 x86. * asctime.c (asctime_r, asctime): * date.c (main, dogmt, reset, wildinput, nondigit, oops, display) (timeout, sametm, netsettime): * difftime.c (difftime): * ialloc.c (icatalloc, icpyalloc): * localtime.c (detzcode, detzcode64, differ_by_repeat) (tzload, typesequiv, getzname, getnum, getsecs, getoffset) (getrule, transtime, tzparse, gmtload, tzsetwall, tzset) (localsub, localtime, localtime_r, gmtsub, gmtime, gmtime_r) (offtime, leaps_thru_end_of, timesub, ctime, ctime_r) (increment_overflow, long_increment_overflow) (normalize_overflow, long_normalize_overflow, tmcomp, time2sub) (time2, time1, mktime, timelocal, timegm, timeoff, gtime) (leapcorr, time2posix, posix2time): * scheck.c (scheck): * strftime.c (strftime, _fmt, _conv, _add, _yconv, _loc): * zdump.c (my_localtime, abbrok, usage, main, yeartot) (delta, abbr, dumptime): * zic.c (memcheck, eats, eat, error, warning, main) (dolink, itsdir, rcomp, associate, infile, gethms, inrule) (inzone, inzcont, inzsub, inleap, inlink, rulesub, convert) (convert64, puttzcode, puttzcode64, atcomp, is32, writezone, DO) (doabbr, updateminmax, stringoffset, stringrule, stringzone) (outzone, addtt, addtype, leapadd, yearistype, lowerit, ciequal) (itsabbr, byword, getfields, oadd, tadd, rpytime, newabbr) (mkdirs, eitol): Assume C89 or better. Mostly this consists of using function prototypes. In a few places, prototypes are required for portability to hosts where time_t does not promote to itself and where a preceding prototype does not override a definition. But while we're at it we might as well be consistent: it's safe to assume at-least-C89 these days. * ialloc.c (nonzero, imalloc, icalloc, irealloc, ifree, icfree): Remove; no longer needed now that we assume C89 or better. All callers changed to use malloc, calloc, realloc, free. * localtime.c (getzname, getqzname, leaps_thru_end_of, transtime): * zdump.c (delta, yeartot): * zic.c (eitol): Now pure. * private.h, zdump.c (ATTRIBUTE_PURE): New macro. * private.h (icalloc, imalloc, irealloc, icfree, ifree): Remove decls. * zic.c: Remove no-longer-necessary forward decls. (max_time, min_time): Now const. (setboundaries): Remove.
2012-10-12 07:53:12 -07:00
-Wwrite-strings
#
# If you want to use System V compatibility code, add
# -DUSG_COMPAT
# to the end of the "CFLAGS=" line. This arrange for "timezone" and "daylight"
# variables to be kept up-to-date by the time conversion functions. Neither
# "timezone" nor "daylight" is described in X3J11's work.
#
# If your system has a "GMT offset" field in its "struct tm"s
# (or if you decide to add such a field in your system's "time.h" file),
# add the name to a define such as
# -DTM_GMTOFF=tm_gmtoff
# or
# -DTM_GMTOFF=_tm_gmtoff
# to the end of the "CFLAGS=" line.
# Neither tm_gmtoff nor _tm_gmtoff is described in X3J11's work;
# in its work, use of "tm_gmtoff" is described as non-conforming.
# Both Linux and BSD have done the equivalent of defining TM_GMTOFF in
# their recent releases.
#
# If your system has a "zone abbreviation" field in its "struct tm"s
# (or if you decide to add such a field in your system's "time.h" file),
# add the name to a define such as
# -DTM_ZONE=tm_zone
# or
# -DTM_ZONE=_tm_zone
# to the end of the "CFLAGS=" line.
# Neither tm_zone nor _tm_zone is described in X3J11's work;
# in its work, use of "tm_zone" is described as non-conforming.
# Both UCB and Sun have done the equivalent of defining TM_ZONE in
# their recent releases.
#
# If you want functions that were inspired by early versions of X3J11's work,
# add
# -DSTD_INSPIRED
# to the end of the "CFLAGS=" line. This arranges for the functions
# "tzsetwall", "offtime", "timelocal", "timegm", "timeoff",
# "posix2time", and "time2posix" to be added to the time conversion library.
# "tzsetwall" is like "tzset" except that it arranges for local wall clock
# time (rather than the time specified in the TZ environment variable)
# to be used.
# "offtime" is like "gmtime" except that it accepts a second (long) argument
# that gives an offset to add to the time_t when converting it.
# "timelocal" is equivalent to "mktime".
# "timegm" is like "timelocal" except that it turns a struct tm into
# a time_t using UT (rather than local time as "timelocal" does).
# "timeoff" is like "timegm" except that it accepts a second (long) argument
# that gives an offset to use when converting to a time_t.
# "posix2time" and "time2posix" are described in an included manual page.
# X3J11's work does not describe any of these functions.
# Sun has provided "tzsetwall", "timelocal", and "timegm" in SunOS 4.0.
# These functions may well disappear in future releases of the time
# conversion package.
#
# If you want to allocate state structures in localtime, add
# -DALL_STATE
# to the end of the "CFLAGS=" line. Storage is obtained by calling malloc.
#
# If you want an "altzone" variable (a la System V Release 3.1), add
# -DALTZONE
# to the end of the "CFLAGS=" line.
# This variable is not described in X3J11's work.
#
# If you want a "gtime" function (a la MACH), add
# -DCMUCS
# to the end of the "CFLAGS=" line
# This function is not described in X3J11's work.
#
# NIST-PCTS:151-2, Version 1.4, (1993-12-03) is a test suite put
# out by the National Institute of Standards and Technology
# which claims to test C and Posix conformance. If you want to pass PCTS, add
# -DPCTS
# to the end of the "CFLAGS=" line.
#
# If you want strict compliance with XPG4 as of 1994-04-09, add
# -DXPG4_1994_04_09
# to the end of the "CFLAGS=" line. This causes "strftime" to always return
# 53 as a week number (rather than 52 or 53) for those days in January that
# before the first Monday in January when a "%V" format is used and January 1
# falls on a Friday, Saturday, or Sunday.
CFLAGS=
# Linker flags. Default to $(LFLAGS) for backwards compatibility
# to tzcode2012h and earlier.
LDFLAGS= $(LFLAGS)
1997-03-04 10:03:59 -05:00
zic= ./zic
ZIC= $(zic) $(ZFLAGS)
ZFLAGS=
# The name of a Posix-compliant 'awk' on your system.
AWK= awk
# The full path name of a Posix-compliant shell, preferably one that supports
# the Korn shell's 'select' statement as an extension.
# These days, Bash is the most popular.
# It should be OK to set this to /bin/sh, on platforms where /bin/sh
# lacks 'select' or doesn't completely conform to Posix, but /bin/bash
# is typically nicer if it works.
KSHELL= /bin/bash
# The path where SGML DTDs are kept and the catalog file(s) to use when
# validating. The default is appropriate for Ubuntu 13.10.
SGML_TOPDIR= /usr
SGML_DTDDIR= $(SGML_TOPDIR)/share/xml/w3c-sgml-lib/schema/dtd
SGML_SEARCH_PATH= $(SGML_DTDDIR)/REC-html401-19991224
SGML_CATALOG_FILES= \
$(SGML_TOPDIR)/share/doc/w3-recs/html/www.w3.org/TR/1999/REC-html401-19991224/HTML4.cat
# The name, arguments and environment of a program to validate your web pages.
# See <http://www.jclark.com/sp/> for a validator, and
# <http://validator.w3.org/source/> for a validation library.
VALIDATE = nsgmls
VALIDATE_FLAGS = -s -B -wall -wno-unused-param
VALIDATE_ENV = \
SGML_CATALOG_FILES=$(SGML_CATALOG_FILES) \
SGML_SEARCH_PATH=$(SGML_SEARCH_PATH) \
SP_CHARSET_FIXED=YES \
SP_ENCODING=UTF-8
# SAFE_CHAR is a regular expression that matches a safe character.
# Some parts of this distribution are limited to safe characters;
# others can use any UTF-8 character.
# For now, the safe characters are a safe subset of ASCII.
# The caller must set the shell variable 'sharp' to the character '#',
# since Makefile macros cannot contain '#'.
# TAB_CHAR is a single tab character, in single quotes.
TAB_CHAR= ' '
SAFE_CHARSET1= $(TAB_CHAR)' !\"'$$sharp'$$%&'\''()*+,./0123456789:;<=>?@'
SAFE_CHARSET2= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\^_`'
SAFE_CHARSET3= 'abcdefghijklmnopqrstuvwxyz{|}~'
SAFE_CHARSET= ]$(SAFE_CHARSET1)$(SAFE_CHARSET2)$(SAFE_CHARSET3)-
SAFE_CHAR= '['$(SAFE_CHARSET)']'
# SAFE_LINE matches a line of safe characters.
# SAFE_SHARP_LINE is similar, except any character can follow '#';
# this is so that comments can contain non-ASCII characters.
# VALID_LINE matches a line of any validly-encoded characters.
SAFE_LINE= '^'$(SAFE_CHAR)'*$$'
SAFE_SHARP_LINE='^'$(SAFE_CHAR)'*('$$sharp'.*)?$$'
VALID_LINE= '^.*$$'
# Flags to give 'tar' when making a distribution.
# Try to use flags appropriate for GNU tar.
GNUTARFLAGS= --numeric-owner --owner=0 --group=0 --mode=go+u,go-w
TARFLAGS= `if tar $(GNUTARFLAGS) --version >/dev/null 2>&1; \
then echo $(GNUTARFLAGS); \
else :; \
fi`
# Flags to give 'gzip' when making a distribution.
GZIPFLAGS= -9n
###############################################################################
cc= cc
CC= $(cc) -DTZDIR=\"$(TZDIR)\"
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
AR= ar
# ':' on typical hosts; 'ranlib' on the ancient hosts that still need ranlib.
RANLIB= :
TZCOBJS= zic.o localtime.o asctime.o scheck.o ialloc.o
TZDOBJS= zdump.o localtime.o ialloc.o asctime.o
DATEOBJS= date.o localtime.o strftime.o asctime.o
LIBSRCS= localtime.c asctime.c difftime.c
LIBOBJS= localtime.o asctime.o difftime.o
HEADERS= tzfile.h private.h
NONLIBSRCS= zic.c zdump.c scheck.c ialloc.c
NEWUCBSRCS= date.c strftime.c
SOURCES= $(HEADERS) $(LIBSRCS) $(NONLIBSRCS) $(NEWUCBSRCS) tzselect.ksh
MANS= newctime.3 newstrftime.3 newtzset.3 time2posix.3 \
tzfile.5 tzselect.8 zic.8 zdump.8
2013-09-25 15:50:44 -07:00
MANTXTS= newctime.3.txt newstrftime.3.txt newtzset.3.txt \
time2posix.3.txt \
tzfile.5.txt tzselect.8.txt zic.8.txt zdump.8.txt \
date.1.txt
COMMON= Makefile README
WEB_PAGES= tz-art.htm tz-link.htm
DOCS= NEWS Theory $(MANS) date.1 $(MANTXTS) $(WEB_PAGES)
PRIMARY_YDATA= africa antarctica asia australasia \
europe northamerica southamerica
Revert recent pre-1970 changes. Other tz file readers had problems with the new pre1970 file, so remove it and related changes. To recover the pre-1970 data, instead change pre-1970 Zone entries in other files back to what they were. Perhaps we'll try to find a better way someday. * .gitignore: Remove back-pre1970. * Makefile (BACKWARD): Remove. All uses changed back to 'backward'. (AWK_SCRIPTS): Remove back-pre1970.awk. (back-pre1970): Remove. (clean_misc): Don't rm back-pre1970. (check_public): Remove special case for pre1970. * back-pre1970.awk, pre1970: Remove. * backward (America/Anguilla, America/Antigua, America/Aruba) (America/Atikokan, America/Blanc-Sablon, America/Cayman) (America/Creston, America/Curacao, America/Dominica, America/Grenada) (America/Guadeloupe, America/Montreal, America/Montserrat) (America/Nassau, America/Port_of_Spain, America/St_Kitts) (America/St_Lucia, America/St_Thomas, America/St_Vincent) (America/Tortola): Remove, as these are zones again. (America/Coral_Harbour, America/Kralendijk, America/Lower_Princes) (America/Marigot, America/St_Barthelemy, America/Virgin): Revert to previous links. * northamerica (Mont, America/Blanc-Sablon, America/Montreal) (America/Atikokan, America/Creston, America/Anguilla, America/Antigua) (Bahamas, America/Nassau, America/Cayman, America/Dominica) (America/Grenada, America/Guadeloupe, America/Montserrat) (America/St_Kitts, America/St_Lucia, America/St_Vincent) (America/Tortola, America/St_Thomas): * southamerica (America/Aruba, America/Curacao, America/Port_of_Spain): Restore these rules and zones. * .gitignore: Add back-pre1970.
2013-08-30 16:36:21 -07:00
YDATA= $(PRIMARY_YDATA) pacificnew etcetera backward
NDATA= systemv factory
TDATA= $(YDATA) $(NDATA)
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
TABDATA= iso3166.tab zone.tab leapseconds
2013-09-25 15:50:44 -07:00
LEAP_DEPS= leapseconds.awk leap-seconds.list
DATA= $(YDATA) $(NDATA) $(TABDATA) \
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
$(LEAP_DEPS) yearistype.sh
AWK_SCRIPTS= checktab.awk leapseconds.awk
MISC= usno1988 usno1989 usno1989a usno1995 usno1997 usno1998 \
$(AWK_SCRIPTS) workman.sh \
Revert recent pre-1970 changes. Other tz file readers had problems with the new pre1970 file, so remove it and related changes. To recover the pre-1970 data, instead change pre-1970 Zone entries in other files back to what they were. Perhaps we'll try to find a better way someday. * .gitignore: Remove back-pre1970. * Makefile (BACKWARD): Remove. All uses changed back to 'backward'. (AWK_SCRIPTS): Remove back-pre1970.awk. (back-pre1970): Remove. (clean_misc): Don't rm back-pre1970. (check_public): Remove special case for pre1970. * back-pre1970.awk, pre1970: Remove. * backward (America/Anguilla, America/Antigua, America/Aruba) (America/Atikokan, America/Blanc-Sablon, America/Cayman) (America/Creston, America/Curacao, America/Dominica, America/Grenada) (America/Guadeloupe, America/Montreal, America/Montserrat) (America/Nassau, America/Port_of_Spain, America/St_Kitts) (America/St_Lucia, America/St_Thomas, America/St_Vincent) (America/Tortola): Remove, as these are zones again. (America/Coral_Harbour, America/Kralendijk, America/Lower_Princes) (America/Marigot, America/St_Barthelemy, America/Virgin): Revert to previous links. * northamerica (Mont, America/Blanc-Sablon, America/Montreal) (America/Atikokan, America/Creston, America/Anguilla, America/Antigua) (Bahamas, America/Nassau, America/Cayman, America/Dominica) (America/Grenada, America/Guadeloupe, America/Montserrat) (America/St_Kitts, America/St_Lucia, America/St_Vincent) (America/Tortola, America/St_Thomas): * southamerica (America/Aruba, America/Curacao, America/Port_of_Spain): Restore these rules and zones. * .gitignore: Add back-pre1970.
2013-08-30 16:36:21 -07:00
zoneinfo2tdf.pl
ENCHILADA= $(COMMON) $(DOCS) $(SOURCES) $(DATA) $(MISC)
# And for the benefit of csh users on systems that assume the user
# shell should be used to handle commands in Makefiles. . .
SHELL= /bin/sh
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
all: tzselect zic zdump libtz.a $(TABDATA)
ALL: all date
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
install: all $(DATA) $(REDO) $(MANS)
mkdir -p $(DESTDIR)$(ETCDIR) $(DESTDIR)$(TZDIR) \
$(DESTDIR)$(LIBDIR) \
$(DESTDIR)$(MANDIR)/man3 $(DESTDIR)$(MANDIR)/man5 \
$(DESTDIR)$(MANDIR)/man8
$(ZIC) -y $(YEARISTYPE) \
-d $(DESTDIR)$(TZDIR) -l $(LOCALTIME) -p $(POSIXRULES)
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
cp -f iso3166.tab zone.tab $(DESTDIR)$(TZDIR)/.
cp tzselect zic zdump $(DESTDIR)$(ETCDIR)/.
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
cp libtz.a $(DESTDIR)$(LIBDIR)/.
$(RANLIB) $(DESTDIR)$(LIBDIR)/libtz.a
cp -f newctime.3 newtzset.3 $(DESTDIR)$(MANDIR)/man3/.
cp -f tzfile.5 $(DESTDIR)$(MANDIR)/man5/.
cp -f tzselect.8 zdump.8 zic.8 $(DESTDIR)$(MANDIR)/man8/.
INSTALL: ALL install date.1
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man1
cp date $(DESTDIR)$(BINDIR)/.
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
cp -f date.1 $(DESTDIR)$(MANDIR)/man1/.
version.h:
(echo 'static char const PKGVERSION[]="($(PACKAGE)) ";' && \
echo 'static char const TZVERSION[]="$(VERSION)";' && \
echo 'static char const REPORT_BUGS_TO[]="$(BUGEMAIL)";') >$@
zdump: $(TZDOBJS)
$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(TZDOBJS) $(LDLIBS)
zic: $(TZCOBJS) yearistype
$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(TZCOBJS) $(LDLIBS)
yearistype: yearistype.sh
cp yearistype.sh yearistype
chmod +x yearistype
2013-09-25 15:50:44 -07:00
leapseconds: $(LEAP_DEPS)
$(AWK) -f leapseconds.awk leap-seconds.list >$@
posix_only: zic $(TDATA)
$(ZIC) -y $(YEARISTYPE) -d $(DESTDIR)$(TZDIR) \
-L /dev/null $(TDATA)
right_only: zic leapseconds $(TDATA)
$(ZIC) -y $(YEARISTYPE) -d $(DESTDIR)$(TZDIR) \
-L leapseconds $(TDATA)
# In earlier versions of this makefile, the other two directories were
# subdirectories of $(TZDIR). However, this led to configuration errors.
# For example, with posix_right under the earlier scheme,
# TZ='right/Australia/Adelaide' got you localtime with leap seconds,
# but gmtime without leap seconds, which led to problems with applications
# like sendmail that subtract gmtime from localtime.
# Therefore, the other two directories are now siblings of $(TZDIR).
# You must replace all of $(TZDIR) to switch from not using leap seconds
# to using them, or vice versa.
right_posix: right_only leapseconds
rm -fr $(DESTDIR)$(TZDIR)-leaps
ln -s $(TZDIR_BASENAME) $(DESTDIR)$(TZDIR)-leaps || \
$(ZIC) -y $(YEARISTYPE) -d $(DESTDIR)$(TZDIR)-leaps \
-L leapseconds $(TDATA)
$(ZIC) -y $(YEARISTYPE) -d $(DESTDIR)$(TZDIR)-posix \
-L /dev/null $(TDATA)
posix_right: posix_only leapseconds
rm -fr $(DESTDIR)$(TZDIR)-posix
ln -s $(TZDIR_BASENAME) $(DESTDIR)$(TZDIR)-posix || \
$(ZIC) -y $(YEARISTYPE) -d $(DESTDIR)$(TZDIR)-posix \
-L /dev/null $(TDATA)
$(ZIC) -y $(YEARISTYPE) -d $(DESTDIR)$(TZDIR)-leaps \
-L leapseconds $(TDATA)
zones: $(REDO)
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
libtz.a: $(LIBOBJS)
$(AR) ru $@ $(LIBOBJS)
$(RANLIB) $@
date: $(DATEOBJS)
$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(DATEOBJS) $(LDLIBS)
tzselect: tzselect.ksh
sed \
-e 's|#!/bin/bash|#!$(KSHELL)|g' \
-e 's|AWK=[^}]*|AWK=$(AWK)|g' \
-e 's|\(PKGVERSION\)=.*|\1='\''($(PACKAGE)) '\''|' \
-e 's|\(REPORT_BUGS_TO\)=.*|\1=$(BUGEMAIL)|' \
-e 's|TZDIR=[^}]*|TZDIR=$(TZDIR)|' \
-e 's|\(TZVERSION\)=.*|\1=$(VERSION)|' \
<$? >$@
chmod +x $@
check: check_character_set check_tables check_web
check_character_set: $(ENCHILADA)
LC_ALL=en_US.utf8 && export LC_ALL && \
sharp='#' && \
! grep -Env $(SAFE_LINE) $(MANS) date.1 $(MISC) $(SOURCES) && \
! grep -Env $(SAFE_SHARP_LINE) Makefile $(DATA) && \
! grep -Env $(VALID_LINE) $(ENCHILADA)
check_tables: checktab.awk $(PRIMARY_YDATA)
$(AWK) -f checktab.awk $(PRIMARY_YDATA)
check_web: $(WEB_PAGES)
$(VALIDATE_ENV) $(VALIDATE) $(VALIDATE_FLAGS) $(WEB_PAGES)
clean_misc:
rm -f core *.o *.out \
date tzselect version.h zdump zic yearistype libtz.a
clean: clean_misc
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
rm -fr tzpublic
maintainer-clean: clean
@echo 'This command is intended for maintainers to use; it'
@echo 'deletes files that may need special tools to rebuild.'
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
rm -f leapseconds $(MANTXTS) *.asc *.tar.gz
names:
@echo $(ENCHILADA)
public: check check_public check_time_t_alternatives \
2013-09-25 15:50:44 -07:00
tarballs signatures
date.1.txt: date.1
newctime.3.txt: newctime.3
newstrftime.3.txt: newstrftime.3
newtzset.3.txt: newtzset.3
time2posix.3.txt: time2posix.3
tzfile.5.txt: tzfile.5
tzselect.8.txt: tzselect.8
zdump.8.txt: zdump.8
zic.8.txt: zic.8
$(MANTXTS): workman.sh
LC_ALL=en_US.utf8 sh workman.sh `expr $@ : '\(.*\)\.txt$$'` >$@
# Set the time stamps to those of the git repository, if available,
# and if the files have not changed since then.
# This uses GNU 'touch' syntax 'touch -d@N FILE',
# where N is the number of seconds since 1970.
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
# If git or GNU 'touch' is absent, don't bother to sync with git timestamps.
2013-09-25 15:50:44 -07:00
# Also, set the timestamp of each prebuilt file like 'leapseconds'
# to be the maximum of the files it depends on.
set-timestamps.out: $(ENCHILADA)
rm -f $@
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
if files=`git ls-files $(ENCHILADA)` && \
touch -md @1 test.out; then \
rm -f test.out && \
for file in $$files; do \
if git diff --quiet $$file; then \
time=`git log -1 --format='tformat:%ct' $$file` && \
touch -cmd @$$time $$file; \
else \
echo >&2 "$$file: warning: does not match repository"; \
fi || exit; \
done; \
fi
2013-09-25 15:50:44 -07:00
touch -cmr `ls -t $(LEAP_DEPS) | sed 1q` leapseconds
for file in `ls $(MANTXTS) | sed 's/\.txt$$//'`; do \
touch -cmr `ls -t $$file workman.sh | sed 1q` $$file.txt || \
exit; \
done
touch $@
Revert recent pre-1970 changes. Other tz file readers had problems with the new pre1970 file, so remove it and related changes. To recover the pre-1970 data, instead change pre-1970 Zone entries in other files back to what they were. Perhaps we'll try to find a better way someday. * .gitignore: Remove back-pre1970. * Makefile (BACKWARD): Remove. All uses changed back to 'backward'. (AWK_SCRIPTS): Remove back-pre1970.awk. (back-pre1970): Remove. (clean_misc): Don't rm back-pre1970. (check_public): Remove special case for pre1970. * back-pre1970.awk, pre1970: Remove. * backward (America/Anguilla, America/Antigua, America/Aruba) (America/Atikokan, America/Blanc-Sablon, America/Cayman) (America/Creston, America/Curacao, America/Dominica, America/Grenada) (America/Guadeloupe, America/Montreal, America/Montserrat) (America/Nassau, America/Port_of_Spain, America/St_Kitts) (America/St_Lucia, America/St_Thomas, America/St_Vincent) (America/Tortola): Remove, as these are zones again. (America/Coral_Harbour, America/Kralendijk, America/Lower_Princes) (America/Marigot, America/St_Barthelemy, America/Virgin): Revert to previous links. * northamerica (Mont, America/Blanc-Sablon, America/Montreal) (America/Atikokan, America/Creston, America/Anguilla, America/Antigua) (Bahamas, America/Nassau, America/Cayman, America/Dominica) (America/Grenada, America/Guadeloupe, America/Montserrat) (America/St_Kitts, America/St_Lucia, America/St_Vincent) (America/Tortola, America/St_Thomas): * southamerica (America/Aruba, America/Curacao, America/Port_of_Spain): Restore these rules and zones. * .gitignore: Add back-pre1970.
2013-08-30 16:36:21 -07:00
# The zics below ensure that each data file can stand on its own.
# We also do an all-files run to catch links to links.
check_public: $(ENCHILADA)
make maintainer-clean
make "CFLAGS=$(GCC_DEBUG_FLAGS)" $(ENCHILADA) all
mkdir tzpublic
for i in $(TDATA) ; do \
Revert recent pre-1970 changes. Other tz file readers had problems with the new pre1970 file, so remove it and related changes. To recover the pre-1970 data, instead change pre-1970 Zone entries in other files back to what they were. Perhaps we'll try to find a better way someday. * .gitignore: Remove back-pre1970. * Makefile (BACKWARD): Remove. All uses changed back to 'backward'. (AWK_SCRIPTS): Remove back-pre1970.awk. (back-pre1970): Remove. (clean_misc): Don't rm back-pre1970. (check_public): Remove special case for pre1970. * back-pre1970.awk, pre1970: Remove. * backward (America/Anguilla, America/Antigua, America/Aruba) (America/Atikokan, America/Blanc-Sablon, America/Cayman) (America/Creston, America/Curacao, America/Dominica, America/Grenada) (America/Guadeloupe, America/Montreal, America/Montserrat) (America/Nassau, America/Port_of_Spain, America/St_Kitts) (America/St_Lucia, America/St_Thomas, America/St_Vincent) (America/Tortola): Remove, as these are zones again. (America/Coral_Harbour, America/Kralendijk, America/Lower_Princes) (America/Marigot, America/St_Barthelemy, America/Virgin): Revert to previous links. * northamerica (Mont, America/Blanc-Sablon, America/Montreal) (America/Atikokan, America/Creston, America/Anguilla, America/Antigua) (Bahamas, America/Nassau, America/Cayman, America/Dominica) (America/Grenada, America/Guadeloupe, America/Montserrat) (America/St_Kitts, America/St_Lucia, America/St_Vincent) (America/Tortola, America/St_Thomas): * southamerica (America/Aruba, America/Curacao, America/Port_of_Spain): Restore these rules and zones. * .gitignore: Add back-pre1970.
2013-08-30 16:36:21 -07:00
$(zic) -v -d tzpublic $$i 2>&1 || exit; \
done
$(zic) -v -d tzpublic $(TDATA)
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
rm -fr tzpublic
# Check that the code works under various alternative
# implementations of time_t.
check_time_t_alternatives:
zones=`$(AWK) '/^[^#]/ { print $$3 }' <zone.tab` && \
for type in $(TIME_T_ALTERNATIVES); do \
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
mkdir -p tzpublic/$$type && \
make clean_misc && \
make TOPDIR=`pwd`/tzpublic/$$type \
CFLAGS='$(CFLAGS) -Dtime_tz='"'$$type'" \
install && \
diff -qr tzpublic/int64_t/etc/zoneinfo tzpublic/$$type/etc/zoneinfo && \
case $$type in \
int32_t) range=-2147483648,2147483647;; \
uint32_t) range=0,4294967296;; \
int64_t) continue;; \
*u*) range=0,10000000000;; \
*) range=-10000000000,10000000000;; \
esac && \
echo checking $$type zones ... && \
tzpublic/int64_t/etc/zdump -V -t $$range $$zones \
>tzpublic/int64_t.out && \
tzpublic/$$type/etc/zdump -V -t $$range $$zones \
>tzpublic/$$type.out && \
diff -u tzpublic/int64_t.out tzpublic/$$type.out \
|| exit; \
done
build: Makefile fixes; let user give AR and RANLIB; local libtz.a * Makefile: Let the user override AR, and build libtz.a before installing it, as suggested by Michael Forney in <https://github.com/eggert/tz/pull/3>. Also, let the user override RANLIB. Modernize a bit by assuming POSIX.2-1992 or later; this is safe nowadays and simplifies the libtz.a business. And treat 'leapseconds' more like we used to, since it's machine-independent a 'make clean' doesn't need to remove it. (TZLIB): Remove. (AR, RANLIB): New macros. (TABDATA): Add leapseconds, so that 'make' builds it by default. (DATA): Remove leapseconds, since $(TABDATA) now has it. (all): Depend on libtz.a, not $(LIBOBJS). (install): Install libtz.a using 'cp', like other files. Also invoke $(RANLIB) on it, after installing. Do not assume that TZDIR is not overridden. (install, INSTALL, check_time_t_alternatives): Use 'mkdir -p', as it's safe to assume nowadays (standardized in POSIX.2-1992). (install, INSTALL): Prefer 'cp -f' to 'rm' followed by 'cp', as it's safe to assume 'cp -f' nowadays (also standardized in POSIX.2-1992). (libtz.a): Rename from $(DESTDIR)$(TZLIB), since we now build it here. Use $(AR) rather than ar. Use $(RANLIB) rather than trying to guess it. (clean_misc): Do not remove 'leapseconds', as it's machine-independent. (maintainer-clean): Remove 'leapseconds' here instead. (clean, check_public): Standardize on 'rm -fr' rather than 'rm -f -r'; formerly the makefile was inconsistent. (set-timestamps.out): Don't ignore failurs of the actual touch command.
2013-10-02 10:48:46 -07:00
rm -fr tzpublic
tarballs: tzcode$(VERSION).tar.gz tzdata$(VERSION).tar.gz
2013-09-25 15:50:44 -07:00
tzcode$(VERSION).tar.gz: set-timestamps.out
LC_ALL=C && export LC_ALL && \
tar $(TARFLAGS) -cf - \
2013-09-25 15:50:44 -07:00
$(COMMON) $(DOCS) $(SOURCES) $(MISC) | \
gzip $(GZIPFLAGS) > $@
2013-09-25 15:50:44 -07:00
tzdata$(VERSION).tar.gz: set-timestamps.out
LC_ALL=C && export LC_ALL && \
tar $(TARFLAGS) -cf - $(COMMON) $(DATA) | \
gzip $(GZIPFLAGS) > $@
signatures: tzcode$(VERSION).tar.gz.asc tzdata$(VERSION).tar.gz.asc
tzcode$(VERSION).tar.gz.asc: tzcode$(VERSION).tar.gz
gpg --armor --detach-sign $?
tzdata$(VERSION).tar.gz.asc: tzdata$(VERSION).tar.gz
gpg --armor --detach-sign $?
typecheck:
make clean
for i in "long long" unsigned; \
do \
make CFLAGS="-DTYPECHECK -D__time_t_defined -D_TIME_T \"-Dtime_t=$$i\"" ; \
2005-03-17 21:48:15 -05:00
./zdump -v Europe/Rome ; \
make clean ; \
done
zonenames: $(TDATA)
@$(AWK) '/^Zone/ { print $$2 } /^Link/ { print $$3 }' $(TDATA)
asctime.o: private.h tzfile.h
date.o: private.h
difftime.o: private.h
ialloc.o: private.h
localtime.o: private.h tzfile.h
scheck.o: private.h
strftime.o: tzfile.h
zdump.o: version.h
zic.o: private.h tzfile.h version.h
.KEEP_STATE:
.PHONY: ALL INSTALL all
.PHONY: check check_character_set check_public check_tables
.PHONY: check_time_t_alternatives check_web clean clean_misc
.PHONY: install maintainer-clean names posix_only posix_right
.PHONY: public right_only right_posix signatures tarballs typecheck
.PHONY: zonenames zones