f2b19f9ece
* -M <metalog> Log metadata in mtree format. * -D <destdir> Log paths relative to <destdir>. * -h <hash> Log digest of type <hash>. * -T <tags> Specify which mtree tags to log. * -l <linkflag> Create hard or symbolic links (allows logging). * -U Install without root privileges (owner, group, mode, and flags can be logged via -M NOTE: In the interest of compatibility with NetBSD and because it is the obvious letter, the nearly useless -M option (disable mmap) has been repurposed. Sponsored by: DARPA, AFRL Obtained from: NetBSD Reviewed by: bz
17 lines
325 B
Makefile
17 lines
325 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} ${LIBMD}
|
|
LDADD+= -lutil -lmd
|
|
|
|
.include <bsd.prog.mk>
|