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
20 lines
367 B
Makefile
20 lines
367 B
Makefile
# $FreeBSD$
|
|
# $Whistle: Makefile,v 1.4 1999/01/17 03:41:02 julian Exp $
|
|
|
|
LIB= netgraph
|
|
MAN3= netgraph.3
|
|
|
|
SHLIB_MAJOR= 1
|
|
#SHLIB_MINOR= 1
|
|
|
|
SRCS= sock.c msg.c debug.c
|
|
|
|
CFLAGS+= -g -Wall -O2 -Werror
|
|
CFLAGS+= -I/usr/src.freefall/sys
|
|
|
|
beforeinstall:
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/netgraph.h \
|
|
${DESTDIR}/usr/include
|
|
|
|
.include <bsd.lib.mk>
|