mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
Many programs use this functionality so it should be available centrally rather than compiled into each program independently. This has the modest downside of adding libutil dependencies to some mount_<foo> programs, but many (plus mount(8)) already have those depndencies so this shouldn't be a major imposition. In commit906c312bbf, Kirk said this could be done once the change was merged to FreeBSD 13. That happened in commit668dfa0166in 2023. While here perform related tidying including removing SRCS where the only entry is ${PROG}.c rendering it unnecessary. Reviewed by: olce, dim, emaste Differential Revision: https://reviews.freebsd.org/D49951
9 lines
169 B
Makefile
9 lines
169 B
Makefile
# $NetBSD: Makefile,v 1.14 1996/09/27 22:38:37 christos Exp $
|
|
|
|
PACKAGE=runtime
|
|
PROG= fsck
|
|
SRCS= fsck.c fsutil.c preen.c
|
|
MAN= fsck.8
|
|
LIBADD= util
|
|
|
|
.include <bsd.prog.mk>
|