diff options
author | harti <harti@FreeBSD.org> | 2003-11-03 12:27:22 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2003-11-03 12:27:22 +0000 |
commit | 6d5fff6caa6c2b8a0ddb8b72aaf469ed96f344b7 (patch) | |
tree | 534cc439262b817dfe755bc60e108f7e61d1abcb /lib/libngatm | |
parent | b1e2c4dbc04cf0e80c3db7fec20ad29f337be953 (diff) | |
download | FreeBSD-src-6d5fff6caa6c2b8a0ddb8b72aaf469ed96f344b7.zip FreeBSD-src-6d5fff6caa6c2b8a0ddb8b72aaf469ed96f344b7.tar.gz |
Build address handling, traffic descriptor handling, encoding and decoding
into the library.
Diffstat (limited to 'lib/libngatm')
-rw-r--r-- | lib/libngatm/Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/lib/libngatm/Makefile b/lib/libngatm/Makefile index 83be841..0c45698 100644 --- a/lib/libngatm/Makefile +++ b/lib/libngatm/Makefile @@ -4,7 +4,7 @@ # LIB= ngatm SHLIB_MAJOR= 1 -MAN= unimsg.3 +MAN= libngatm.3 uniaddr.3 unifunc.3 unimsg.3 unistruct.3 WARNS= 6 # source of the library lives in contrib @@ -15,21 +15,28 @@ LIBBASE= ${SDIR}/contrib/ngatm CFLAGS+= -I${LIBBASE} -I${.OBJDIR} -I${CTRB}/libngatm # CFLAGS+= -DSSCOP_DEBUG -DSSCFU_DEBUG -DUNI_DEBUG -.PATH: ${LIBBASE}/netnatm ${LIBBASE}/netnatm/saal ${LIBBASE}/netnatm/misc +.PATH: ${LIBBASE}/netnatm ${LIBBASE}/netnatm/saal ${LIBBASE}/netnatm/misc \ + ${LIBBASE}/netnatm/msg .PATH: ${CTRB}/libngatm ${CTRB}/man -SRCS= unimsg.c unimsg_common.c \ +SRCS= unimsg.c unimsg_common.c straddr.c \ + traffic.c uni_ie.c uni_msg.c \ saal_sscop.c saal_sscfu.c # Includes -INCSGROUPS= INCSATM INCSSAAL +INCSGROUPS= INCSATM INCSSAAL INCSMSG # common files INCSATMDIR= $(INCLUDEDIR)/netnatm -INCSATM= unimsg.h +INCSATM= unimsg.h addr.h # signaling AAL INCSSAALDIR= $(INCLUDEDIR)/netnatm/saal INCSSAAL= saal/sscfu.h saal/sscfudef.h saal/sscop.h saal/sscopdef.h +# message parsing +INCSMSGDIR= $(INCLUDEDIR)/netnatm/msg +INCSMSG= msg/uni_config.h msg/uni_hdr.h msg/uni_ie.h msg/uni_msg.h \ + msg/unimsglib.h msg/uniprint.h msg/unistruct.h + .include <bsd.lib.mk> |