1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2026-05-07 06:07:17 +00:00
SCCS-file: Makefile
SCCS-SID: 2.5
This commit is contained in:
Arthur David Olson
1986-07-12 07:27:55 -04:00
committed by Paul Eggert
parent 174b08dc96
commit 6c3bc57888

View File

@@ -12,6 +12,10 @@ LOCALTIME= Eastern
TZDIR= /etc/tzdir
# You may want to change this define if you're just testing the software.
TZLIB= /usr/lib/libtz.a
# LINTFLAGS is set for 4.1bsd systems. If you're using System V, you'll want
# to comment out the "LINTFLAGS=" line.
@@ -31,7 +35,7 @@ DATA= asia australasia europe etcetera \
newzealand northamerica pacificnew
ENCHILADA= $(DOCS) $(SOURCES) $(DATA)
all: REDID_BINARIES tzdump
all: REDID_BINARIES tzdump $(TZLIB)
REDID_BINARIES: $(TZDIR) tzcomp $(DATA) years
tzcomp -l $(LOCALTIME) -d $(TZDIR) $(DATA)
@@ -40,6 +44,10 @@ REDID_BINARIES: $(TZDIR) tzcomp $(DATA) years
tzdump: $(TZDOBJS)
$(CC) $(LFLAGS) $(TZDOBJS) -o $@
$(TZLIB): ctime.o settz.o
ar ru $@ ctime.o settz.o
ranlib $@
tzcomp: $(TZCOBJS)
$(CC) $(LFLAGS) $(TZCOBJS) -o $@