diff options
author | wollman <wollman@FreeBSD.org> | 1996-11-19 18:09:41 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-11-19 18:09:41 +0000 |
commit | 8587682a08d10e4f98954d015e225341302797ab (patch) | |
tree | 93c74b4ed74d4c41b44522421907724ff1195c38 /usr.sbin/tzsetup/Makefile | |
parent | 9b54175344028e4b01b450a1467b60ee7e047d47 (diff) | |
download | FreeBSD-src-8587682a08d10e4f98954d015e225341302797ab.zip FreeBSD-src-8587682a08d10e4f98954d015e225341302797ab.tar.gz |
Completely re-vamped `tzsetup':
- It no longer attempts to fiddle wall-vs-UTC-in-RTC. The results
were just confusing most of the time.
- The program no longer contains a pre-compiled list of timezones
(compiled by groveling through the tzdata source files for comments
starting with `ZONE-DESCR'). Now it uses the new `zone.tab' file
supplied with current versions of the timezone data files, to determine
the list at run time. (It also requires the ISO 3166 table I
committed some months ago.)
AS A RESULT, this program will NOT work until the new timezone data files
are committed (should happen sometime soon).
Diffstat (limited to 'usr.sbin/tzsetup/Makefile')
-rw-r--r-- | usr.sbin/tzsetup/Makefile | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/usr.sbin/tzsetup/Makefile b/usr.sbin/tzsetup/Makefile index 001c257..25ca3ff 100644 --- a/usr.sbin/tzsetup/Makefile +++ b/usr.sbin/tzsetup/Makefile @@ -1,20 +1,9 @@ -# $Id: Makefile,v 1.3 1996/01/24 00:11:57 wosch Exp $ +# $Id: Makefile,v 1.4 1996/09/04 22:25:35 bde Exp $ PROG= tzsetup MAN8= tzsetup.8 -SRCS= main.c tzmenu.c menus.c CFLAGS+= -I${.CURDIR} -CLEANFILES+= menus.c LDADD+= -ldialog -lncurses -lmytinfo DPADD+= ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO} -Z= ${.CURDIR}/../../share/zoneinfo -.PATH: ${Z} - -ZF= africa antarctica asia australasia europe northamerica southamerica - -menus.c: grok.pl ${ZF} - perl ${.CURDIR}/grok.pl `for a in ${ZF}; do echo ${Z}/$$a; done` \ - > ${.TARGET} - .include <bsd.prog.mk> |