Re: [kbuild-devel] using $(src) in EXTRA_CFLAGS

2004-11-17 Thread Eric Sandeen
Sam Ravnborg wrote: There is no need to specify full path. The kernel is always build with top of output tree as current directory so a much simpler version is enough: EXTRA_CFLAGS += -Ifs/xfs -Ifs/xfs/linux-2.6 But what about the case where I wish to use the same Makefile to work out of tree,

Re: [kbuild-devel] using $(src) in EXTRA_CFLAGS

2004-11-17 Thread Sam Ravnborg
On Wed, Nov 17, 2004 at 07:54:47AM -0600, Eric Sandeen wrote: Sam Ravnborg wrote: There is no need to specify full path. The kernel is always build with top of output tree as current directory so a much simpler version is enough: EXTRA_CFLAGS += -Ifs/xfs -Ifs/xfs/linux-2.6 But what about