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

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

1.10    ! hugh        1: #      $OpenBSD: Makefile,v 1.9 2000/06/14 01:05:04 itojun Exp $
1.1       deraadt     2:
                      3: PROG=  netstat
1.10    ! hugh        4: SRCS=  if.c inet.c inet6.c ipx.c iso.c main.c mbuf.c mroute.c ns.c route.c \
        !             5:        tp_astring.c unix.c atalk.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>