Hi all,

I want to create a list of targets using eval and add more than one command line after the dependecies. Newline is removed when using eval.

My Output should look like:

target1: dep1
        @cmda
        @cmdb

target2: dep2
        @cmda
        @cmdb

but the eval output is e.g.:
target2: dep2   @cmda   @cmdb

because eval removes the newline, I tried to do the following:
target1: dep1; @cmda; @cmdb

but there, make complains, that /bin/sh does not find "@"??
What must I do do bring multiple command lines in a usable sequence when using an eval expression?

Best regards,

Erik

_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to