1997-03-11 12:28:00 +00:00
|
|
|
# @(#)Makefile 8.6 (Berkeley) 5/8/95
|
1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
PROG= mount
|
2005-11-23 23:22:56 +00:00
|
|
|
SRCS= mount.c mount_fs.c getmntopts.c vfslist.c
|
- Minor fixes to raise WARNS level to 6.
- Teach the mount program to call the nmount() syscall directly
- Preserve existing method of calling mount() for UFS, until we clean things
up.
- Preserve existing method of forking and calling external mount programs for
mfs, msdosfs, nfs, nfs4, ntfs, nwfs, nullfs, portalfs, reiserfs, smbfs,
udf, umapfs, unionfs
- devfs, linprocfs, procfs, ext2fs call nmount() syscall directly, since
that is all those external mount programs were doing
Reviewed by: phk
Discussed on: arch
2005-11-12 20:12:56 +00:00
|
|
|
WARNS?= 6
|
2001-03-26 14:33:27 +00:00
|
|
|
MAN= mount.8
|
1994-05-26 06:35:07 +00:00
|
|
|
# We do NOT install the getmntopts.3 man page.
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|