8 lines
123 B
Bash
8 lines
123 B
Bash
|
#!/bin/sh
|
||
|
cat targets.txt | (
|
||
|
while read target model
|
||
|
do
|
||
|
make MODEL=$model TARGET=$target build
|
||
|
done
|
||
|
)
|