4cf49a4355
Been in production for 3 years now. Gives Instant Frame relay to if_sr and if_ar drivers, and PPPOE support soon. See: ftp://ftp.whistle.com/pub/archie/netgraph/index.html for on-line manual pages. Reviewed by: Doug Rabson (dfr@freebsd.org) Obtained from: Whistle CVS tree
17 lines
360 B
Makefile
17 lines
360 B
Makefile
# $FreeBSD$
|
|
# @(#)Makefile 8.1 (Berkeley) 6/12/93
|
|
|
|
PROG= netstat
|
|
SRCS= if.c inet.c main.c mbuf.c mroute.c ipx.c route.c \
|
|
unix.c atalk.c netgraph.c # iso.c ns.c tp_astring.c
|
|
CFLAGS+=-Wall
|
|
|
|
#CFLAGS+=-g
|
|
#.PATH: ${.CURDIR}/../../sys/netiso
|
|
BINGRP= kmem
|
|
BINMODE=2555
|
|
DPADD= ${LIBKVM} ${LIBIPX} ${LIBNETGRAPH}
|
|
LDADD= -lkvm -lipx -lnetgraph
|
|
|
|
.include <bsd.prog.mk>
|