svn commit: r212526 - head/usr.bin

Warner Losh imp at FreeBSD.org
Mon Sep 13 02:23:03 UTC 2010


Author: imp
Date: Mon Sep 13 02:23:03 2010
New Revision: 212526
URL: http://svn.freebsd.org/changeset/base/212526

Log:
  Merge from tbemd: Move to using Makefile.arch to control what's build.
  
  Reviewed by:	(arch@, no objection)

Added:
  head/usr.bin/Makefile.amd64   (contents, props changed)
  head/usr.bin/Makefile.arm   (contents, props changed)
  head/usr.bin/Makefile.i386   (contents, props changed)
  head/usr.bin/Makefile.ia64   (contents, props changed)
  head/usr.bin/Makefile.powerpc   (contents, props changed)
  head/usr.bin/Makefile.sparc64   (contents, props changed)

Added: head/usr.bin/Makefile.amd64
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/usr.bin/Makefile.amd64	Mon Sep 13 02:23:03 2010	(r212526)
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+.if ${MK_NCP} != "no"
+SUBDIR+=	ncplist
+SUBDIR+=	ncplogin
+.endif
+SUBDIR+=	smbutil

Added: head/usr.bin/Makefile.arm
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/usr.bin/Makefile.arm	Mon Sep 13 02:23:03 2010	(r212526)
@@ -0,0 +1,3 @@
+# $FreeBSD$
+
+SUBDIR:=	${SUBDIR:Ntruss}

Added: head/usr.bin/Makefile.i386
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/usr.bin/Makefile.i386	Mon Sep 13 02:23:03 2010	(r212526)
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+.if ${MK_NCP} != "no"
+SUBDIR+=	ncplist
+SUBDIR+=	ncplogin
+.endif
+SUBDIR+=	smbutil

Added: head/usr.bin/Makefile.ia64
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/usr.bin/Makefile.ia64	Mon Sep 13 02:23:03 2010	(r212526)
@@ -0,0 +1,3 @@
+# $FreeBSD$
+
+SUBDIR+=	smbutil

Added: head/usr.bin/Makefile.powerpc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/usr.bin/Makefile.powerpc	Mon Sep 13 02:23:03 2010	(r212526)
@@ -0,0 +1,3 @@
+# $FreeBSD$
+
+SUBDIR+=	smbutil

Added: head/usr.bin/Makefile.sparc64
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/usr.bin/Makefile.sparc64	Mon Sep 13 02:23:03 2010	(r212526)
@@ -0,0 +1,3 @@
+# $FreeBSD$
+
+SUBDIR+=	smbutil


More information about the svn-src-all mailing list