Re: [AD] make depend problem (again)

[ Thread Index | Date Index | More lists.liballeg.org/allegro-developers Archives ]


"Bob" <ohannessian@xxxxxxxxxx> wrote:

> G:\MICROS~1\allegro>make
> Compiling Allegro for MSVC, optimised. Please wait...
> make: *** No rule to make target `obj\msvc\mmx.h', needed by
> `obj/msvc/alleg/pol
> y3d.obj'.  Stop.

hmm... perhaps you should also edit include/allegro/alconfig.h and switch:
#elif defined __MINGW32__
   #include "almngw32.h"
with:
#elif defined _MSC_VER
   #include "almsvc.h"

IIRC both make and mingw32 gcc defines __MINGW32__ internal, so that the
wrong include files are used when you're mixing mingw and msvc tools. a
quick hack would be to replace #elif defined __MINGW32__ with #elif (defined
__MINGW32__) && (!defined _MSC_VER). happy hacking!

-henrik




Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/