aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/mount_nwfs/Makefile
diff options
context:
space:
mode:
authorBoris Popov <bp@FreeBSD.org>1999-10-15 09:59:48 +0000
committerBoris Popov <bp@FreeBSD.org>1999-10-15 09:59:48 +0000
commita51e71fc6404cce20fb3160828339af5ae86a54f (patch)
tree7fb571fc68137608ef4ac454a4a466b5851e34bc /usr.sbin/mount_nwfs/Makefile
parentce0b1244e81d54c276722763cffe767d61e701ef (diff)
downloadsrc-a51e71fc6404cce20fb3160828339af5ae86a54f.tar.gz
src-a51e71fc6404cce20fb3160828339af5ae86a54f.zip
Add mount_nwfs program. Now -current can mount NetWare volumes.
Notes
Notes: svn path=/head/; revision=52252
Diffstat (limited to 'usr.sbin/mount_nwfs/Makefile')
-rw-r--r--usr.sbin/mount_nwfs/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/usr.sbin/mount_nwfs/Makefile b/usr.sbin/mount_nwfs/Makefile
new file mode 100644
index 000000000000..53405963beb7
--- /dev/null
+++ b/usr.sbin/mount_nwfs/Makefile
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+PROG= mount_nwfs
+SRCS= mount_nwfs.c getmntopts.c
+MAN8= mount_nwfs.8
+
+MOUNT= ${.CURDIR}/../mount
+CFLAGS+= -DNWFS -I${MOUNT}
+
+.PATH: ${MOUNT}
+
+LDADD+= -lncp -lipx
+DPADD+= ${LIBIPX} ${LIBNCP}
+
+.include <bsd.prog.mk>