freebsd-dev/usr.bin/atm/sscop/Makefile
Tom Rhodes 5f892a7ff0 Fix build in the !NOATM case by using the begemot library in place of
using libisc which was a part of BIND8.

Discussed with:	des, re, dougb
Submitted by:	harti (one part)
Reviewed by:	harti (previous version)
2004-09-24 22:10:34 +00:00

16 lines
280 B
Makefile

# $FreeBSD$
CONTRIB= ${.CURDIR}/../../../contrib/ngatm/sscop
.PATH: ${CONTRIB}
PROG= sscop
SRCS= common.c sscop_main.c
WARNS?= 6
CFLAGS+= -I${CONTRIB} -DUSE_LIBBEGEMOT
DPADD= ${LIBBEGEMOT} ${LIBNETGRAPH} ${LIBNGATM}
LDADD= -lbegemot -lnetgraph -lngatm
.include <bsd.prog.mk>