[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
On 2005-08-20, Evert Glebbeek <eglebbk@xxxxxxxxxx> wrote:
> On Tuesday 09 August 2005 08:17, Peter Hull wrote:
> > Unfortunately this doesn't build for me - the problem seems to be that
> > makefile.dep is wrongly accounting for some headers that are in
> > frameworks, when it's processing Objective C files. For example
> > #include <CoreFoundation/CoreFoundation.h> probably shouldn't be
> > included in the dependency list. The errors I get are of the type:
> > No rule to make dependency XXX.h, required by target YYY.o
>
> This looks like a problem in the dependency generation. As far as I know,
> it should not include dependencies for files that are included with <>.
> I distinctly remember we had a very similar problem a while back and we
> solved it. Do you remember the details?
I think we need some
#ifndef SCAN_DEPEND
#include <blah.h>
#endif
constructs in the OS X port.
Peter