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