Files
amiga-tz/Makefile
T

194 lines
5.7 KiB
Makefile
Raw Normal View History

1986-01-13 17:26:56 -05:00
# %W%
1989-03-05 13:12:47 -05:00
# 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).
1986-03-02 22:02:58 -05:00
# Alternately, if you discover you've got the wrong time zone, you can just
1986-11-19 19:15:31 -05:00
# zic -l rightzone
1986-02-28 21:30:44 -05:00
1989-03-09 15:08:25 -05:00
LOCALTIME= Factory
1986-02-28 21:30:44 -05:00
1989-01-31 23:10:30 -05:00
# 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).
# Alternately, if you discover you've got the wrong time zone, you can just
# zic -p rightzone
POSIXRULES= US/Eastern
1986-03-02 22:02:58 -05:00
# Use an absolute path name for TZDIR unless you're just testing the software.
1986-01-21 09:11:47 -05:00
1986-11-15 20:20:29 -05:00
TZDIR= /etc/zoneinfo
1986-02-28 21:30:44 -05:00
1989-02-04 18:30:06 -05:00
# If you always want time values interpreted as "seconds since the epoch
# (not counting leap seconds)", use
# REDO= posix_only
1989-02-17 20:21:00 -05:00
# below. If you always want right time values interpreted as "seconds since
1989-02-04 18:30:06 -05:00
# 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
1989-02-17 20:21:00 -05:00
# below. If you want both sets of data available, with leap seconds counted
1989-02-04 18:30:06 -05:00
# normally, use
# REDO= right_posix
# below.
REDO= posix_right
1986-07-12 07:27:55 -04:00
# You may want to change this define if you're just testing the software.
1987-02-28 18:42:18 -05:00
# Alternatively, you can put these functions in /lib/libc.a, removing
1988-04-16 21:39:29 -04:00
# the old "ctime.o". This is the
1987-02-28 18:42:18 -05:00
# ideal solution if you are able. Build libz.a, extract the files, and
# then add them to libc.a.
1986-07-12 07:27:55 -04:00
1986-11-22 19:03:35 -05:00
TZLIB= /usr/lib/libz.a
1986-07-12 07:27:55 -04:00
1987-02-02 15:32:36 -05:00
# If you're running on a system where "strchr" is known as "index",
1987-02-16 13:41:39 -05:00
# (for example, a 4.[012]BSD system), add
1987-02-02 15:32:36 -05:00
# -Dstrchr=index
1987-02-28 18:42:18 -05:00
# to the end of the "CFLAGS=" line.
1987-02-02 15:32:36 -05:00
#
1989-03-05 22:57:09 -05:00
# If you're running on a system with a "mkdir" function, feel free to add
1989-03-05 22:10:42 -05:00
# -Demkdir=mkdir
# to the end of the "CFLAGS=" line
#
1986-12-26 15:21:45 -05:00
# If you want to use System V compatibility code, add
# -DUSG_COMPAT
# to the end of the "CFLAGS=" line.
#
# 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.
#
# 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_ZONE=tm_zone
# or
# -DTM_ZONE=_tm_zone
# to the end of the "CFLAGS=" line.
1987-02-12 19:56:12 -05:00
#
# If you want code inspired by certain emerging standards, add
# -DSTD_INSPIRED
# to the end of the "CFLAGS=" line.
#
1986-12-26 15:21:45 -05:00
# If you want Source Code Control System ID's left out of object modules, add
# -DNOID
# to the end of the "CFLAGS=" line.
#
1987-02-08 17:59:44 -05:00
# If you'll never want to handle solar-time-based time zones, add
# -DNOSOLAR
1987-02-12 19:56:12 -05:00
# to the end of the "CFLAGS=" line
1988-02-18 04:31:21 -05:00
# (and comment out the "SDATA=" line below).
1989-02-26 15:28:37 -05:00
#
# If you want to allocate state structures in localtime, add
# -DALL_STATE
# to the end of the "CFLAGS=" line.
#
# If you want an "altzone" variable (a la System V Release 3.1), add
# -DALTZONE
# to the end of the "CFLAGS=" line.
1989-02-27 10:06:50 -05:00
#
# If you want a "gtime" function (a la MACH), add
# -DCMUCS
# to the end of the "CFLAGS=" line
1986-11-27 12:46:22 -05:00
1986-12-26 15:21:45 -05:00
CFLAGS=
1986-11-27 12:46:22 -05:00
1986-12-26 15:21:45 -05:00
################################################################################
1986-12-31 15:56:04 -05:00
CC= cc -DTZDIR=\"$(TZDIR)\"
1986-01-13 17:26:56 -05:00
1988-02-18 04:31:21 -05:00
TZCSRCS= zic.c localtime.c asctime.c \
scheck.c ialloc.c emkdir.c getopt.c link.c
TZCOBJS= zic.o localtime.o asctime.o \
scheck.o ialloc.o emkdir.o getopt.o link.o
TZDSRCS= zdump.c localtime.c asctime.c \
ialloc.c getopt.c link.c
TZDOBJS= zdump.o localtime.o asctime.o \
ialloc.o getopt.o link.o
1989-03-07 22:22:17 -05:00
DATESRCS= date.c localtime.c getopt.c logwtmp.c
DATEOBJS= date.o localtime.o getopt.o logwtmp.o
LIBSRCS= localtime.c asctime.c difftime.c
LIBOBJS= localtime.o asctime.o difftime.o
1989-02-17 20:21:00 -05:00
HEADERS= tzfile.h nonstd.h stdio.h stdlib.h time.h
1989-03-09 15:08:25 -05:00
NONLIBSRCS= zic.c zdump.c scheck.c ialloc.c emkdir.c getopt.c link.c
1989-03-09 15:40:35 -05:00
NEWUCBSRCS= date.c logwtmp.c
SOURCES= $(HEADERS) $(LIBSRCS) $(NONLIBSRCS) $(NEWUCBSRCS)
1988-02-13 10:06:38 -05:00
DOCS= Patchlevel.h \
README Theory \
1989-03-07 22:22:17 -05:00
date.1 newctime.3 tzfile.5 zic.8 zdump.8 \
1989-02-17 20:21:00 -05:00
Makefile
1988-02-18 04:31:21 -05:00
YDATA= africa antarctica asia australasia \
1989-03-09 15:08:25 -05:00
europe northamerica southamerica pacificnew etcetera factory
1988-02-18 04:31:21 -05:00
NDATA= systemv
1989-01-28 21:07:46 -05:00
SDATA= solar87 solar88 solar89
1989-02-04 18:30:06 -05:00
TDATA= $(YDATA) $(NDATA) $(SDATA)
1988-02-18 04:31:21 -05:00
DATA= $(YDATA) $(NDATA) $(SDATA) leapseconds
1989-02-17 20:21:00 -05:00
USNO= usno1988 usno1989
ENCHILADA= $(DOCS) $(SOURCES) $(DATA) $(USNO)
1986-01-13 17:26:56 -05:00
1989-03-07 22:28:49 -05:00
all: REDID_BINARIES zdump date $(TZLIB)
1986-01-13 17:26:56 -05:00
1989-03-07 22:28:49 -05:00
# We want to use system's logwtmp in preference to ours if available.
1989-03-07 22:22:17 -05:00
date: $(DATEOBJS)
1989-03-07 22:28:49 -05:00
ar r ,lib.a logwtmp.o
1989-03-07 22:22:17 -05:00
-ranlib ,lib.a
1989-03-07 22:28:49 -05:00
$(CC) $(CFLAGS) date.o localtime.o getopt.o -lc ,lib.a -o $@
1989-03-07 22:22:17 -05:00
rm -f ,lib.a
1989-02-04 18:30:06 -05:00
REDID_BINARIES: zic $(DATA) $(REDO)
1989-01-31 23:10:30 -05:00
./zic -d $(TZDIR) -l $(LOCALTIME) -p $(POSIXRULES)
1988-02-18 04:31:21 -05:00
touch $@
1986-01-16 11:00:37 -05:00
1989-03-11 21:05:20 -05:00
posix_only: zic $(TDATA)
1989-02-04 18:30:06 -05:00
./zic -d $(TZDIR) -L /dev/null $(TDATA)
1989-03-11 21:05:20 -05:00
right_only: zic leapseconds $(TDATA)
1989-02-04 18:30:06 -05:00
./zic -d $(TZDIR) -L leapseconds $(TDATA)
1989-03-11 21:05:20 -05:00
other_two: zic leapseconds $(TDATA)
1989-02-04 18:30:06 -05:00
./zic -d $(TZDIR)/posix -L /dev/null $(TDATA)
./zic -d $(TZDIR)/right -L leapseconds $(TDATA)
posix_right: posix_only other_two
right_posix: right_only other_two
1986-12-26 15:21:45 -05:00
zdump: $(TZDOBJS)
1986-12-31 15:56:04 -05:00
$(CC) $(CFLAGS) $(LFLAGS) $(TZDOBJS) -o $@
1986-01-13 17:26:56 -05:00
1989-03-07 22:22:17 -05:00
# The "ar d" command below ensures that obsolete object files are eliminated
# from the library.
1986-12-31 14:23:02 -05:00
$(TZLIB): $(LIBOBJS)
ar ru $@ $(LIBOBJS)
1989-03-11 21:05:20 -05:00
-ar d $@ timemk.o ctime.o
1989-02-17 20:21:00 -05:00
-ranlib $@
1986-07-12 07:27:55 -04:00
1986-12-26 15:21:45 -05:00
zic: $(TZCOBJS)
1986-12-31 15:56:04 -05:00
$(CC) $(CFLAGS) $(LFLAGS) $(TZCOBJS) -o $@
1986-01-21 09:11:47 -05:00
1986-01-13 17:26:56 -05:00
clean:
1989-03-17 19:06:31 -05:00
rm -f core *.o *.out REDID_BINARIES zdump zic date ,*
1986-01-13 17:26:56 -05:00
1988-02-13 10:06:38 -05:00
names:
@echo $(ENCHILADA)
1986-11-24 16:39:58 -05:00
1988-02-27 19:15:58 -05:00
asctime.o: nonstd.h stdio.h time.h tzfile.h
1989-03-07 22:22:17 -05:00
difftime.o: nonstd.h time.h
emkdir.o: nonstd.h stdio.h stdlib.h
1988-02-27 19:15:58 -05:00
ialloc.o: nonstd.h stdlib.h
link.o: nonstd.h stdio.h
localtime.o: nonstd.h stdio.h stdlib.h time.h tzfile.h
scheck.o: nonstd.h stdio.h stdlib.h
zic.o: nonstd.h stdio.h stdlib.h time.h tzfile.h
1989-02-17 20:21:00 -05:00
.KEEP_STATE: