svn commit: r240937 - in projects/mtree/usr.bin: . install
Brooks Davis
brooks at FreeBSD.org
Tue Sep 25 21:33:38 UTC 2012
Author: brooks
Date: Tue Sep 25 21:33:36 2012
New Revision: 240937
URL: http://svn.freebsd.org/changeset/base/240937
Log:
Hook NetBSD's install up to the build. For now it is installed as ninstall
and without a manpage.
Added:
projects/mtree/usr.bin/install/
projects/mtree/usr.bin/install/Makefile
Modified:
projects/mtree/usr.bin/Makefile
Modified: projects/mtree/usr.bin/Makefile
==============================================================================
--- projects/mtree/usr.bin/Makefile Tue Sep 25 21:31:17 2012 (r240936)
+++ projects/mtree/usr.bin/Makefile Tue Sep 25 21:33:36 2012 (r240937)
@@ -64,6 +64,7 @@ SUBDIR= alias \
hexdump \
${_iconv} \
id \
+ install \
ipcrm \
ipcs \
join \
Added: projects/mtree/usr.bin/install/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ projects/mtree/usr.bin/install/Makefile Tue Sep 25 21:33:36 2012 (r240937)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+.include <bsd.own.mk>
+
+PROG= ninstall
+SRCS= xinstall.c getid.c util.c
+MAN=
+
+.PATH: ${.CURDIR}/../../contrib/install
+.PATH: ${.CURDIR}/../../contrib/mtree
+.PATH: ${.CURDIR}/../../usr.sbin/nmtree
+CFLAGS+= -I${.CURDIR}/../../contrib/mtree \
+ -I${.CURDIR}/../../usr.sbin/nmtree \
+ -DNO_SHA384
+LDADD+= -lmd
+
+.include <bsd.prog.mk>
More information about the svn-src-projects
mailing list