Build address handling, traffic descriptor handling, encoding and decoding

into the library.
This commit is contained in:
Hartmut Brandt 2003-11-03 12:27:22 +00:00
parent 62230fec65
commit 34eee97206
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121950

View File

@ -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>