a7b5a3d486
All of them are needed to be able to boot to single user and be able to repair a existing FreeBSD installation so put them directly into FreeBSD-runtime. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D21503
14 lines
249 B
Makefile
14 lines
249 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/lib/libc/gen # for pw_scan.c
|
|
|
|
PACKAGE= runtime
|
|
PROG= pwd_mkdb
|
|
MAN= pwd_mkdb.8
|
|
SRCS= pw_scan.c pwd_mkdb.c
|
|
|
|
CFLAGS+= -I${SRCTOP}/lib/libc/gen # for pw_scan.h
|
|
|
|
.include <bsd.prog.mk>
|