diff options
author | wiz <wiz> | 2004-12-03 15:14:50 +0000 |
---|---|---|
committer | wiz <wiz> | 2004-12-03 15:14:50 +0000 |
commit | 998b0c7156c398a485c9894ae57403d161b66dca (patch) | |
tree | 8f483a3c4a5e5f1691642df617cb7138d1cf8187 /benchmarks/iozone | |
parent | 589cabc7dea50acb511116250b8e586dcd851c0f (diff) | |
download | pkgsrc-998b0c7156c398a485c9894ae57403d161b66dca.tar.gz |
Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.
Suggested by Roland Illig, ok'd by various.
Diffstat (limited to 'benchmarks/iozone')
-rw-r--r-- | benchmarks/iozone/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/benchmarks/iozone/Makefile b/benchmarks/iozone/Makefile index f085a01898a..ff6b881b328 100644 --- a/benchmarks/iozone/Makefile +++ b/benchmarks/iozone/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2004/11/10 14:13:21 adam Exp $ +# $NetBSD: Makefile,v 1.28 2004/12/03 15:14:51 wiz Exp $ DISTNAME= iozone3_226 PKGNAME= iozone-3.226 @@ -20,20 +20,20 @@ MAKEFILE= makefile .include "../../mk/bsd.prefs.mk" .if !empty(OPSYS:M*BSD) || ${OPSYS} == "Linux" - ALL_TARGET= ${LOWER_OPSYS} + BUILD_TARGET= ${LOWER_OPSYS} .elif (${OPSYS} == "SunOS") - ALL_TARGET= Solaris + BUILD_TARGET= Solaris .elif (${OPSYS} == "Darwin") - ALL_TARGET= macosx + BUILD_TARGET= macosx .elif (${OPSYS} == "IRIX") - ALL_TARGET= ${OPSYS}${ABI:M64} + BUILD_TARGET= ${OPSYS}${ABI:M64} .elif (${OPSYS} == "BSDOS") - ALL_TARGET= bsdi + BUILD_TARGET= bsdi .elif (${OPSYS} == "AIX") - ALL_TARGET= ${OPSYS} + BUILD_TARGET= ${OPSYS} .else # XXX: generic should work, but specific target would be better - ALL_TARGET= generic + BUILD_TARGET= generic .endif INSTALLATION_DIRS= bin man/man1 |