Makefile process multiline output

42 Views Asked by At

I have a command which outputs lines. I would like to process each line in parallel with Make.

target:
  command > $@

so now, I have a file called "target". In shell, I would do

   while read -r line; do
       echo "$line"
    done < target
0

There are 0 best solutions below