1996-06-24 04:26:21 +00:00
|
|
|
# $Id: Makefile,v 1.8 1995/11/16 02:00:38 gpalmer Exp $
|
1994-09-13 21:54:06 +00:00
|
|
|
|
|
|
|
NOBIN=
|
|
|
|
CLEANFILES+= yearistype
|
|
|
|
|
|
|
|
.if defined(LEAPSECONDS)
|
1995-11-16 02:00:38 +00:00
|
|
|
LEAPFILE= -L leapseconds
|
1994-09-13 21:54:06 +00:00
|
|
|
.else
|
1995-11-16 02:00:38 +00:00
|
|
|
LEAPFILE=
|
1994-09-13 21:54:06 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
TZFILES= africa antarctica asia australasia etcetera europe \
|
1994-09-13 22:02:46 +00:00
|
|
|
factory northamerica southamerica systemv
|
1994-09-13 21:54:06 +00:00
|
|
|
POSIXRULES= America/New_York
|
|
|
|
|
|
|
|
.if defined(OLDTIMEZONES)
|
|
|
|
TZFILES+= backward
|
|
|
|
.endif
|
|
|
|
|
1996-06-24 04:26:21 +00:00
|
|
|
.if exists(${.OBJDIR}/yearistype)
|
|
|
|
YEARISTYPE=${.OBJDIR}/yearistype
|
1994-09-13 21:54:06 +00:00
|
|
|
.else
|
|
|
|
YEARISTYPE=${.CURDIR}/yearistype
|
|
|
|
.endif
|
|
|
|
|
|
|
|
all: yearistype
|
|
|
|
depend:
|
|
|
|
|
|
|
|
yearistype: yearistype.sh
|
|
|
|
cp ${.CURDIR}/yearistype.sh yearistype
|
|
|
|
chmod +x yearistype
|
|
|
|
|
|
|
|
afterinstall: yearistype
|
|
|
|
umask 022; cd ${.CURDIR}; \
|
|
|
|
zic -d ${DESTDIR}/usr/share/zoneinfo -p ${POSIXRULES} \
|
1995-11-16 02:00:38 +00:00
|
|
|
${LEAPFILE} -y ${YEARISTYPE} ${TZFILES}
|
1994-09-13 21:54:06 +00:00
|
|
|
chown -R bin.bin ${DESTDIR}/usr/share/zoneinfo/*
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|