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

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

1.9     ! itojun      1: #      $OpenBSD: Makefile,v 1.8 2000/06/13 22:27:06 angelos Exp $
1.1       deraadt     2:
                      3: PROG=  netstat
1.3       mickey      4: SRCS=  if.c inet.c ipx.c iso.c main.c mbuf.c mroute.c ns.c route.c \
1.6       itojun      5:        tp_astring.c unix.c atalk.c inet6.c mroute6.c
1.1       deraadt     6: .PATH: ${.CURDIR}/../../sys/netiso
                      7: BINGRP=        kmem
                      8: BINMODE=2555
                      9: LDADD= -lkvm
                     10: DPADD= ${LIBKVM}
1.8       angelos    11: INET6?=        yes
1.6       itojun     12:
1.8       angelos    13: .if (${INET6} != "no")
1.6       itojun     14: CPPFLAGS+=     -DINET6
1.8       angelos    15: .endif
                     16:
1.9     ! itojun     17: CPPFLAGS+=     -DKAME_SCOPEID
1.1       deraadt    18:
                     19: .include <bsd.prog.mk>