automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: blank line following trailing backslash


From: Harlan Stenn
Subject: Re: blank line following trailing backslash
Date: Mon, 26 Jan 2009 22:48:05 +0000

* 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

[Prev in Thread] Current Thread [Next in Thread]