b01f4aebb9
This is a portable version of NetBSD's install(1) program, and is intended to be used as a replacement for the install-sh script on platforms which do not have a native BSD install program. The install-sh script does not support file names with spaces, and this version should be more robust. This portable version does not include mtree, futimes and chflags support. Tested in a full SmartOS bulk build with no apparent issues.
15 lines
331 B
Makefile
15 lines
331 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/08/28 11:42:36 jperkin Exp $
|
|
# NetBSD: Makefile,v 1.21 2006/12/16 12:59:17 bouyer Exp
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= bsdinstall
|
|
SRCS= bsdinstall.c setmode.c
|
|
MAN= bsdinstall.1
|
|
|
|
LDADD+= -lnbcompat
|
|
|
|
COPTS.xinstall.c += -Wno-format-nonliteral
|
|
|
|
.include <bsd.prog.mk>
|