diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-12-14 11:41:22 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-12-14 11:41:22 +0000 |
commit | 551d694f64492d4841014ae147153c9ca632408c (patch) | |
tree | a6563e2409fea18ff81d15c248055df33169e326 /include | |
parent | e19de1ca7045af9c082151e6054a81cbed69548f (diff) | |
download | FreeBSD-src-551d694f64492d4841014ae147153c9ca632408c.zip FreeBSD-src-551d694f64492d4841014ae147153c9ca632408c.tar.gz |
Add bmake glue for src/contrib/smbfs and connect userland smbfs
support to the build.
The MFC reminder below is subject to <re@FreeBSD.org> approval
prior to 4.5-RELEASE.
Reviewed by: bp, fjoe
MFC: 1 week
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/Makefile b/include/Makefile index 3d7b146..01dfc00 100644 --- a/include/Makefile +++ b/include/Makefile @@ -26,6 +26,8 @@ ARPAFILES= ftp.h inet.h nameser.h nameser_compat.h telnet.h tftp.h PROTOFILES= dumprestore.h routed.h rwhod.h talkd.h timed.h +NETSMBFILES= nb_lib.h smb_lib.h smb_rap.h + MFILES= float.h floatingpoint.h stdarg.h varargs.h # posix4/aio.h conflicts with dysons and isn't installed: @@ -116,6 +118,11 @@ copies: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}/usr/include/netinet .endif +.if exists(${.CURDIR}/../sys/contrib/netsmb/include/netsmb) + cd ${.CURDIR}/../sys/contrib/netsmb/include/netsmb; \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${NETSMBFILES} \ + ${DESTDIR}/usr/include/netsmb +.endif .if exists(${.CURDIR}/../sys/security/lomac) cd ${.CURDIR}/../sys/security/lomac; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 lomac.h \ |