From 59b7843e0133c739022ebad9e5dff5e9cfbcb5a8 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Wed, 7 Jul 2004 17:24:30 +0000 Subject: [PATCH] Build things in dictionary order. --- gnu/usr.bin/Makefile | 48 +++++++++++++++++++++++++++++++------------- 1 file changed, 34 insertions(+), 14 deletions(-) diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index fa0e65cebbc..bb2f137d023 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