776088cef3
and results in a bogus link and US/ directory.
40 lines
815 B
Makefile
40 lines
815 B
Makefile
# $Id: Makefile,v 1.6 1994/09/13 21:54:06 wollman Exp $
|
|
|
|
NOBIN=
|
|
CLEANFILES+= yearistype
|
|
|
|
.if defined(LEAPSECONDS)
|
|
LEAPFILE= leapseconds
|
|
.else
|
|
LEAPFILE= /dev/null
|
|
.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} \
|
|
-L ${LEAPFILE} -y ${YEARISTYPE} ${TZFILES}
|
|
chown -R bin.bin ${DESTDIR}/usr/share/zoneinfo/*
|
|
|
|
.include <bsd.prog.mk>
|