diff options
author | Warner Losh <imp@FreeBSD.org> | 2010-09-13 02:23:03 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2010-09-13 02:23:03 +0000 |
commit | 22e2f727d0cef7394177c6ecab32de674c1d3404 (patch) | |
tree | a653443d5c011eef506fdb95aad2a5a64e51adc8 | |
parent | 519b7ecc1b2ceecfc70bd75523816e740aa1c7ad (diff) | |
download | src-22e2f727d0cef7394177c6ecab32de674c1d3404.tar.gz src-22e2f727d0cef7394177c6ecab32de674c1d3404.zip |
Merge from tbemd: Move to using Makefile.arch to control what's build.
Reviewed by: (arch@, no objection)
Notes
Notes:
svn path=/head/; revision=212526
-rw-r--r-- | usr.bin/Makefile.amd64 | 7 | ||||
-rw-r--r-- | usr.bin/Makefile.arm | 3 | ||||
-rw-r--r-- | usr.bin/Makefile.i386 | 7 | ||||
-rw-r--r-- | usr.bin/Makefile.ia64 | 3 | ||||
-rw-r--r-- | usr.bin/Makefile.powerpc | 3 | ||||
-rw-r--r-- | usr.bin/Makefile.sparc64 | 3 |
6 files changed, 26 insertions, 0 deletions
diff --git a/usr.bin/Makefile.amd64 b/usr.bin/Makefile.amd64 new file mode 100644 index 000000000000..2eba205a7a50 --- /dev/null +++ b/usr.bin/Makefile.amd64 @@ -0,0 +1,7 @@ +# $FreeBSD$ + +.if ${MK_NCP} != "no" +SUBDIR+= ncplist +SUBDIR+= ncplogin +.endif +SUBDIR+= smbutil diff --git a/usr.bin/Makefile.arm b/usr.bin/Makefile.arm new file mode 100644 index 000000000000..3c4e7a5fbbe2 --- /dev/null +++ b/usr.bin/Makefile.arm @@ -0,0 +1,3 @@ +# $FreeBSD$ + +SUBDIR:= ${SUBDIR:Ntruss} diff --git a/usr.bin/Makefile.i386 b/usr.bin/Makefile.i386 new file mode 100644 index 000000000000..2eba205a7a50 --- /dev/null +++ b/usr.bin/Makefile.i386 @@ -0,0 +1,7 @@ +# $FreeBSD$ + +.if ${MK_NCP} != "no" +SUBDIR+= ncplist +SUBDIR+= ncplogin +.endif +SUBDIR+= smbutil diff --git a/usr.bin/Makefile.ia64 b/usr.bin/Makefile.ia64 new file mode 100644 index 000000000000..fee2fb076811 --- /dev/null +++ b/usr.bin/Makefile.ia64 @@ -0,0 +1,3 @@ +# $FreeBSD$ + +SUBDIR+= smbutil diff --git a/usr.bin/Makefile.powerpc b/usr.bin/Makefile.powerpc new file mode 100644 index 000000000000..fee2fb076811 --- /dev/null +++ b/usr.bin/Makefile.powerpc @@ -0,0 +1,3 @@ +# $FreeBSD$ + +SUBDIR+= smbutil diff --git a/usr.bin/Makefile.sparc64 b/usr.bin/Makefile.sparc64 new file mode 100644 index 000000000000..fee2fb076811 --- /dev/null +++ b/usr.bin/Makefile.sparc64 @@ -0,0 +1,3 @@ +# $FreeBSD$ + +SUBDIR+= smbutil |