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