4bf0acc9bc
group file to be used. This is useful for installing on systems where a user or group does not currently exist. Sponsored by: DARPA, AFRL Obtained from: NetBSD MFC after: 5 days
17 lines
311 B
Makefile
17 lines
311 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= xinstall
|
|
PROGNAME= install
|
|
SRCS= xinstall.c getid.c
|
|
MAN= install.1
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/mtree
|
|
CFLAGS+= -I${.CURDIR}/../../contrib/mtree
|
|
CFLAGS+= -I${.CURDIR}/../../lib/libnetbsd
|
|
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
|
|
.include <bsd.prog.mk>
|