1# $MirOS: src/usr.sbin/ntpd/Makefile,v 1.6 2014/03/13 05:48:24 tg Exp $
2# $OpenBSD: Makefile,v 1.7 2004/07/04 11:01:49 alexander Exp $
3
4PROG=		ntpd
5SRCS=		buffer.c client.c config.c cutil.c imsg.c log.c ntp.c \
6		ntp_msg.c ntpd.c parse.y server.c util.c
7CPPFLAGS+=	-DIN_NTPD
8CFLAGS+=	-Wall -Wextra
9CFLAGS+=	-Wstrict-prototypes -Wmissing-prototypes
10CFLAGS+=	-Wmissing-declarations
11CFLAGS+=	-Wshadow -Wpointer-arith -Wcast-qual
12CFLAGS+=	-Wsign-compare
13YFLAGS=
14MAN=		ntpd.8 ntpd.conf.5
15
16# for cutil.c
17.PATH: ${.CURDIR}/../rdate
18
19.include <bsd.prog.mk>
20