[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / netstat

Annotation of src/usr.bin/netstat/Makefile, Revision 1.13

1.13    ! itojun      1: #      $OpenBSD: Makefile,v 1.12 2004/06/25 20:05:40 henning Exp $
1.1       deraadt     2:
                      3: PROG=  netstat
1.12      henning     4: SRCS=  if.c inet.c inet6.c ipx.c main.c mbuf.c mroute.c ns.c route.c \
                      5:        unix.c atalk.c mroute6.c
1.1       deraadt     6: BINGRP=        kmem
                      7: BINMODE=2555
                      8: LDADD= -lkvm
                      9: DPADD= ${LIBKVM}
1.8       angelos    10: INET6?=        yes
1.6       itojun     11:
1.8       angelos    12: .if (${INET6} != "no")
1.6       itojun     13: CPPFLAGS+=     -DINET6
1.8       angelos    14: .endif
1.13    ! itojun     15:
        !            16: CPPFLAGS+=     -DDCCP
1.1       deraadt    17:
                     18: .include <bsd.prog.mk>