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