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

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.

And what happens if there's overlap between the targets?
Define 'overlap'?
What if they have a common prerequisite?