From: Keith W. <ke...@va...> - 2000-11-19 11:44:12
|
Gareth Hughes wrote: > > Why do some of the files in subfolders under Mesa/src include with > "../"? For example, files are picking up the tnl directory files with > "../tnl/t_context.h" or similar. > > If this is to support automake, please change it so Mesa/src/ is in the > include path rather than referencing the files with relative paths. > This is what the old-style makefiles do. > I see only: [keithw@rover src-flags]$ grep "\.\./" `find . -name \*.[ch]` ./GGI/default/stubs.c:#include "../../swrast/swrast.h" ./GGI/default/stubs.c:#include "../../swrast_setup/swrast_setup.h" ./X/xmesaP.h:#include "../FX/fxdrv.h" I'm sure these will work fine without the ../, or if not (GGI?) they will by bringing their makefiles etc into line with the other ones. Keith |