diff options
author | harti <harti@FreeBSD.org> | 2003-11-07 09:10:25 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2003-11-07 09:10:25 +0000 |
commit | 0defd13ce39d267cb0444cc68c84e8f41efac90b (patch) | |
tree | 904f03511860695733a7ae56895ca06ec99d0e0e /lib/libngatm | |
parent | 3fbf59c91dbdbd24b3c7bc164fbd4032f833a5f0 (diff) | |
download | FreeBSD-src-0defd13ce39d267cb0444cc68c84e8f41efac90b.zip FreeBSD-src-0defd13ce39d267cb0444cc68c84e8f41efac90b.tar.gz |
Build the layer 3 (signalling) stuff into the library and install
the corresponding headers.
Diffstat (limited to 'lib/libngatm')
-rw-r--r-- | lib/libngatm/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/libngatm/Makefile b/lib/libngatm/Makefile index 0c45698..abb3373 100644 --- a/lib/libngatm/Makefile +++ b/lib/libngatm/Makefile @@ -16,15 +16,17 @@ CFLAGS+= -I${LIBBASE} -I${.OBJDIR} -I${CTRB}/libngatm # CFLAGS+= -DSSCOP_DEBUG -DSSCFU_DEBUG -DUNI_DEBUG .PATH: ${LIBBASE}/netnatm ${LIBBASE}/netnatm/saal ${LIBBASE}/netnatm/misc \ - ${LIBBASE}/netnatm/msg + ${LIBBASE}/netnatm/msg ${LIBBASE}/netnatm/sig .PATH: ${CTRB}/libngatm ${CTRB}/man SRCS= unimsg.c unimsg_common.c straddr.c \ traffic.c uni_ie.c uni_msg.c \ - saal_sscop.c saal_sscfu.c + saal_sscop.c saal_sscfu.c \ + sig_call.c sig_coord.c sig_party.c sig_print.c sig_reset.c \ + sig_uni.c sig_unimsgcpy.c sig_verify.c # Includes -INCSGROUPS= INCSATM INCSSAAL INCSMSG +INCSGROUPS= INCSATM INCSSAAL INCSMSG INCSSIG # common files INCSATMDIR= $(INCLUDEDIR)/netnatm @@ -39,4 +41,8 @@ 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 +# signaling layer +INCSSIGDIR= $(INCLUDEDIR)/netnatm/sig +INCSSIG= sig/uni.h sig/unidef.h sig/unisig.h + .include <bsd.lib.mk> |