aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2004-07-07 17:24:30 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2004-07-07 17:24:30 +0000
commit59b7843e0133c739022ebad9e5dff5e9cfbcb5a8 (patch)
tree621daefd86b7d1f380613c26a1bc6e0f37dcfa9b /gnu/usr.bin
parent9193b9a5a1e4c197d83d24338cb8dd0d4f8134de (diff)
downloadsrc-59b7843e0133c739022ebad9e5dff5e9cfbcb5a8.tar.gz
src-59b7843e0133c739022ebad9e5dff5e9cfbcb5a8.zip
Build things in dictionary order.
Notes
Notes: svn path=/head/; revision=131746
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/Makefile48
1 files changed, 34 insertions, 14 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile
index fa0e65cebbcf..bb2f137d023f 100644
--- a/gnu/usr.bin/Makefile
+++ b/gnu/usr.bin/Makefile
@@ -1,29 +1,49 @@
# $FreeBSD$
-SUBDIR= bc ${_binutils} ${_cc} cpio dc dialog diff diff3 ${_gdb} \
- ${_gperf} grep gzip man patch rcs sdiff send-pr sort tar texinfo
-
+SUBDIR= bc \
+ ${_binutils} \
+ ${_cc} \
+ cpio \
+ ${_cvs} \
+ dc \
+ dialog \
+ diff \
+ diff3 \
+ ${_gdb} \
+ ${_gperf} \
+ grep \
+ ${_groff} \
+ gzip \
+ man \
+ patch \
+ rcs \
+ sdiff \
+ send-pr \
+ sort \
+ tar \
+ texinfo
+
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc"
NO_GDB= not yet
.endif
-.if !defined(NO_TOOLCHAIN)
-_cc=cc
-_binutils=binutils
-.if !defined(NO_GDB)
-_gdb=gdb
-.endif
-.endif
-
.if !defined(NO_CXX)
.if ${MACHINE_ARCH} != "powerpc"
-_gperf=gperf
+_gperf= gperf
.endif
-SUBDIR+=groff
+_groff= groff
.endif
.if !defined(NO_CVS)
-SUBDIR+=cvs
+_cvs= cvs
+.endif
+
+.if !defined(NO_TOOLCHAIN)
+_binutils= binutils
+_cc= cc
+.if !defined(NO_GDB)
+_gdb= gdb
+.endif
.endif
.include <bsd.subdir.mk>