blob: 46af3cacca2110a3e31b6a0d8728b338f4984e19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $Id$
.PATH: ${.CURDIR}/..
PROG= zdump
SRCS= zdump.c ialloc.c scheck.c
MAN8= ${.CURDIR}/../zdump.8
CFLAGS+= -I${.CURDIR}/.. -I${.CURDIR}/../../../lib/libc/stdtime
CFLAGS+= -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -DSTD_INSPIRED -DPCTS
CFLAGS+= -DHAVE_LONG_DOUBLE -DTZDIR=\"/usr/share/zoneinfo\" -Demkdir=mkdir
.include <bsd.prog.mk>
|