6 lines
61 B
Bash
Executable file
6 lines
61 B
Bash
Executable file
#!/bin/sh
|
|
|
|
ARGS="$*"
|
|
echo "Arguments: $ARGS"
|
|
|
|
exec make "$@"
|