Home | History | Annotate | Line # | Download | only in ntpdate
      1 #	$NetBSD: Makefile,v 1.4 2025/01/13 07:53:47 skrll Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 PROG=	ntpdate
      6 MAN=	ntpdate.8
      7 BINDIR=	/usr/sbin
      8 
      9 SRCS=	ntpdate.c
     10 
     11 LDADD+=		-L${LIBNTP} -lntp -L${LIBISC} -liscntp -lm
     12 DPADD+=		${LIBNTP}/libntp.a ${LIBISC}/libiscntp.a ${LIBM}
     13 
     14 .include "${.CURDIR}/../Makefile.inc"
     15 
     16 DIST=${IDIST}/ntpdate
     17 
     18 CPPFLAGS+=-I${IDIST}/include -I${IDIST}/sntp/libopts
     19 
     20 .PATH: ${DIST}
     21 
     22 .include <bsd.prog.mk>
     23