diff options
Diffstat (limited to 'usr.bin/atm')
-rw-r--r-- | usr.bin/atm/Makefile | 5 | ||||
-rw-r--r-- | usr.bin/atm/Makefile.inc | 3 | ||||
-rw-r--r-- | usr.bin/atm/sscop/Makefile | 14 |
3 files changed, 22 insertions, 0 deletions
diff --git a/usr.bin/atm/Makefile b/usr.bin/atm/Makefile new file mode 100644 index 0000000..9ed46ef --- /dev/null +++ b/usr.bin/atm/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SUBDIR= sscop + +.include <bsd.subdir.mk> diff --git a/usr.bin/atm/Makefile.inc b/usr.bin/atm/Makefile.inc new file mode 100644 index 0000000..265f86d --- /dev/null +++ b/usr.bin/atm/Makefile.inc @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/usr.bin/atm/sscop/Makefile b/usr.bin/atm/sscop/Makefile new file mode 100644 index 0000000..36d3dcf --- /dev/null +++ b/usr.bin/atm/sscop/Makefile @@ -0,0 +1,14 @@ +# $FreeBSD$ + +CONTRIB= ${.CURDIR}/../../../contrib/ngatm/sscop + +.PATH: ${CONTRIB} + +PROG= sscop +SRCS= common.c sscop_main.c +CFLAGS+= -I${CONTRIB} -DUSE_LIBBEGEMOT + +DPADD= ${LIBBEGEMOT} ${LIBNETGRAPH} ${LIBNGATM} +LDADD= -lbegemot -lnetgraph -lngatm + +.include <bsd.prog.mk> |