mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
11 lines
123 B
Bash
11 lines
123 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
cd `dirname $0`
|
|
|
|
executable=`basename $0 .t`
|
|
|
|
make $executable 2>&1 > /dev/null
|
|
|
|
exec ./$executable
|