> For some reason I have really met this problem with the 
> src-glut/makefile.fx. It is quite possible that the nmake is 
> pickier here than say C-compiler.
> 

problem is line continuation if you use something like

FOO  = file1.c file2.c file3.c \
            file4.c file5.c

it ends up being

FOO  = file1.c file2.c file3.c \

            file4.c file5.c

same goes for 

TARGET: deps
    (CC) -c etc


TARGET: deps

    (CC) -c etc


which won`t work, as the continuation adds the blank line instead.
and the second example will appear blank to make, and cause multiple
errors because of the drift.

C code won`t appear to be as affected because theres less use 
of the continuation \ and its less susceptible to whitespace and
cr/lf mismatches. but it still breaks mesa


charlie





_______________________________________________
Mesa-dev maillist  -  [EMAIL PROTECTED]
http://lists.mesa3d.org/mailman/listinfo/mesa-dev

Reply via email to