c40ee95964
Package Makefiles may now directly include compiler.mk. * Don't include compiler.mk within bsd.prefs.mk any longer. It was only included for the purposes of defining CC_VERSION. Packages that want to test the value of CC_VERSION should now first include "../../mk/compiler.mk". Any GCC_REQD statements in package Makefiles should be set before compiler.mk is included. * Simpllfy pkgsrc/mk/compiler/*.mk files as a result of not needing to be included indirectly by bsd.prefs.mk. We remove the special handling associated with detecting whether the file was included from within bsd.prefs.mk. These files are now much more straightforward to write and understand. * G/C the BSD_PREFS_MK stack mechanism as the only users (compiler/*) no longer need it. * Ensure that directories are prepended to the PATH only from within bsd.pkg.mk.
12 lines
306 B
Makefile
12 lines
306 B
Makefile
# $NetBSD: mipspro-ucode.mk,v 1.2 2004/02/18 13:32:38 jlam Exp $
|
|
|
|
.if !defined(COMPILER_MIPSPRO_UCODE_MK)
|
|
COMPILER_MIPSPRO_UCODE_MK= defined
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CC_VERSION?= MIPSpro Compilers: Version 4.x (ucode)
|
|
|
|
.include "../../mk/compilers/mipspro.mk"
|
|
|
|
.endif # COMPILER_MIPSPRO_UCODE_MK
|