Home | History | Annotate | Line # | Download | only in ping
Makefile revision 1.15
      1  1.15   pooka #	$NetBSD: Makefile,v 1.15 2010/11/11 22:56:38 pooka Exp $
      2   1.7     cgd #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3   1.1     cgd 
      4  1.14     tls USE_FORT?= yes	# setuid
      5   1.1     cgd PROG=	ping
      6   1.6     cgd MAN=	ping.8
      7   1.1     cgd BINOWN=	root
      8   1.1     cgd BINMODE=4555
      9  1.10   jwise LDADD=	-lm
     10  1.13   bjh21 DPADD=	${LIBM}
     11  1.11  itojun CPPFLAGS+=	-DIPSEC
     12  1.11  itojun LDADD+= -lipsec
     13  1.12  itojun DPADD+= ${LIBIPSEC}
     14   1.1     cgd 
     15  1.15   pooka #
     16  1.15   pooka # Compile-time debug flag.  If compiled with "make RUMP_ACTION=1",
     17  1.15   pooka # make rump system calls.  This allows to single-step ioctl commands
     18  1.15   pooka # to figure out where ioctl's go in the kernel.
     19  1.15   pooka #
     20  1.15   pooka .ifdef RUMP_ACTION
     21  1.15   pooka CPPFLAGS+=      -DRUMP_SYS_NETWORKING -DRUMP_SYS_IOCTL -DRUMP_SYS_CLOSE
     22  1.15   pooka CPPFLAGS+=      -DRUMP_ACTION
     23  1.15   pooka LDADD+=         -lrumpclient
     24  1.15   pooka DBG=            -g
     25  1.15   pooka .endif
     26  1.15   pooka 
     27   1.1     cgd .include <bsd.prog.mk>
     28