* Andreas wrote on Sun, Jan 25, 2009 at 06:42:52PM CET:
>     fileA.c \
>     fileB.c \
>     fileC.c
> [...]

I do it this way:

NULL=
...
FOO= \
     fileA.c    \
     fileB.c    \
     $(NULL)

BAR= \
     fileC.c    \
     fileD.c    \
     $(NULL)

Mostly I do this so it is easy for me to "sort" the filenames.

I hope I followed this thread correctly.

H


Reply via email to