Makefile revision 1.10
1#	$NetBSD: Makefile,v 1.10 2012/10/25 15:14:36 martin Exp $
2
3.if defined(HAVE_GCC) && ${HAVE_GCC} >= 45
4WARNS?=	2	# XXX -Wcast-qual in lib/libc/time
5.else
6# warning with older gcc:
7# "comparison is always false due to limited range of data type"
8# and no way to make it shut up?
9WARNS=		0
10NOGCCERROR=	1
11.endif
12
13.include <bsd.own.mk>
14
15PROG=	zic
16SRCS=	zic.c scheck.c ialloc.c
17MAN=	zic.8
18CPPFLAGS+=-Dunix
19
20.PATH: ${NETBSDSRCDIR}/lib/libc/time
21
22.include <bsd.prog.mk>
23