freebsd-dev/share/zoneinfo/Makefile
Gary Palmer e265b77bef Change the handling of the leapseconds so that if LEAPSECONDS isn't
defined, it doesn't call zic with -L /dev/null, and instead doesn't
use -L at all
1995-11-16 02:00:38 +00:00

40 lines
805 B
Makefile

# $Id: Makefile,v 1.7 1994/09/13 22:02:46 wollman Exp $
NOBIN=
CLEANFILES+= yearistype
.if defined(LEAPSECONDS)
LEAPFILE= -L leapseconds
.else
LEAPFILE=
.endif
TZFILES= africa antarctica asia australasia etcetera europe \
factory northamerica southamerica systemv
POSIXRULES= America/New_York
.if defined(OLDTIMEZONES)
TZFILES+= backward
.endif
.if exists(${.CURDIR}/obj/.)
YEARISTYPE=${.CURDIR}/obj/yearistype
.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} \
${LEAPFILE} -y ${YEARISTYPE} ${TZFILES}
chown -R bin.bin ${DESTDIR}/usr/share/zoneinfo/*
.include <bsd.prog.mk>