Y
Hacker News
new
|
ask
|
show
|
jobs
by
mehrdadn
2225 days ago
I think this might have repercussions? Like if you do "make foo bash bar" then can you predict what that SHELL is used for?
1 comments
sciencerobot
2225 days ago
The shell is specific to each target. So doing `make ruby bash python docker` works. It even works in parallel if you do `make -j`.
Edit: I'm the author.
link
mehrdadn
2225 days ago
And what happens if there's overlap between the targets?
link
rhencke
2225 days ago
Define 'overlap'?
link
mehrdadn
2225 days ago
What if they have a common prerequisite?
link
Edit: I'm the author.