diff options
author | ru <ru@FreeBSD.org> | 2004-07-07 17:24:30 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-07-07 17:24:30 +0000 |
commit | cdcc5ec1f9ecb804c40d35185e2c2d8a376b3b13 (patch) | |
tree | 621daefd86b7d1f380613c26a1bc6e0f37dcfa9b | |
parent | 4463bbe1ce3441b65c86b87ddb2cf3af4856f3c6 (diff) | |
download | FreeBSD-src-cdcc5ec1f9ecb804c40d35185e2c2d8a376b3b13.zip FreeBSD-src-cdcc5ec1f9ecb804c40d35185e2c2d8a376b3b13.tar.gz |
Build things in dictionary order.
-rw-r--r-- | gnu/usr.bin/Makefile | 48 |
1 files changed, 34 insertions, 14 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index fa0e65c..bb2f137 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> |