Home | History | Annotate | Line # | Download | only in ntpq
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2009/12/13 17:13:48 kardel Exp $
      2 
      3 # NOGCCERROR=yes
      4 
      5 .include <bsd.own.mk>
      6 
      7 PROG=	ntpq
      8 MAN=
      9 BINDIR=	/usr/sbin
     10 
     11 SRCS=	ntpq.c					\
     12 	ntpq-subs.c				\
     13 	ntpq-opts.c
     14 
     15 LDADD+=		-L${LIBNTP} -lntp -L${LIBOPTS} -lopts -L${LIBISC} -liscntp -ledit -lm 
     16 #DPADD+=		${LIBISC}/libiscntp.a ${LIBOPTS}/libopts.a  ${LIBNTP}/libntp.a ${LIBM} ${LIBUTIL}
     17 
     18 .include "${.CURDIR}/../Makefile.inc"
     19 
     20 DIST=${IDIST}/ntpq
     21 
     22 CPPFLAGS+=-I${IDIST}/include -I${IDIST}/libopts
     23 
     24 .PATH: ${DIST}
     25 
     26 .include <bsd.prog.mk>
     27