Subject: Re: nbmake-xxx failed on OpenBSD
To: Tetsuya Isaki <isaki@par.odn.ne.jp>
From: Simon J. Gerraty <sjg@crufty.net>
List: tech-toolchain
Date: 02/13/2005 23:22:02
On Fri, 11 Feb 2005 16:41:22 +0900, Tetsuya Isaki writes:
>I'm sorry, which Makefile should I put into ?
If you only want it to apply for pkgsrc, then I'd guess:
pkgsrc/mk/defaults/mk.conf
else if you want it for everything you could put it in
/etc/mk.conf or whatever MAKECONF is set to. You could even put it in
mk.conf and only have it apply when using bmake with something like:
.ifdef MAKE_VERSION
.if ${MAKE_VERSION:C/bmake//} != ${MAKE_VERSION}
.SHELL: ....
.endif
.endif
--sjg