freebsd-dev/sbin/mount/Makefile
Bosko Milekic 2aebb586db The previous change to mount(8) to report ufs or ufs2 used
libufs, which only works for Charlie root.

This change reverts the introduction of libufs and moves the
check into the kernel.  Since the f_fstypename is the same
for both ufs and ufs2, we check fs_magic for presence of
ufs2 and copy "ufs2" explicitly instead.

Submitted by: Christian S.J. Peron <maneo@bsdpro.com>
2004-04-26 15:13:46 +00:00

11 lines
205 B
Makefile

# @(#)Makefile 8.6 (Berkeley) 5/8/95
# $FreeBSD$
PROG= mount
SRCS= mount.c mount_ufs.c getmntopts.c vfslist.c
WARNS?= 0
MAN= mount.8
# We do NOT install the getmntopts.3 man page.
.include <bsd.prog.mk>