top | item 40187264

(no title)

wizhi | 1 year ago

But this can literally just be done in a simple shell script as well. The makefile ends up just being a redundant way to run a shell script.

discuss

order

lelanthran|1 year ago

> But this can literally just be done in a simple shell script as well.

Only if there's no dependencies. It's unusual that GP's type of usage has no dependencies.

chuckadams|1 year ago

When my shell scripts depend on another script ... they run the other script. Make definitely has its place, especially when dependencies get complex and parallel, but it's hardly necessary for simple cases. Once Make is needed, it's trivial to drop in and have it wrap the standalone scripts.

blipvert|1 year ago

I build .tf files from parameters for each host in the Makefile (and script which knows the vSphere topology) for one-shot execution (it only creates the VM, it doesn’t manage the lifecycle) and also template config that needs to be done before deployment - there are plenty of dependencies