in reply to Re: Re: Sourcing Dot Config Files and Monitoring Make Processes
in thread Sourcing Dot Config Files and Monitoring Make Processes
All it does is set a few variables and then run whatever commands you give it. This also means that make doesn't "talk" as much during compiles since the commands are shorter. I'm not a fan of Makefiles which spew out reams of useless "-I../../../../../src -DSOMETHING -DSOMETHING_ELSE ..." type parameters since it is harder to casually spot warnings, and harder still to parse what is actually going on.#!/bin/sh # Set Variables FOO="bar" CC="gcc" COPTS="-l -q -r" # Execute whatever $*
|
|---|