9 lines
93 B
Plaintext
9 lines
93 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
MAKEPROG=gmake
|
||
|
export MAKEPROG
|
||
|
|
||
|
# gmake is called 'make' on Linux
|
||
|
|
||
|
exec make "$@"
|