mirror of
https://github.com/opnsense/src.git
synced 2026-03-06 07:10:41 -05:00
20 lines
228 B
Bash
20 lines
228 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
cd `dirname $0`
|
|
. ../../common.sh
|
|
|
|
setup_test()
|
|
{
|
|
cat > ${WORK_DIR}/Makefile << _EOF_
|
|
all:
|
|
_EOF_
|
|
}
|
|
|
|
desc_test()
|
|
{
|
|
echo "A Makefile file with only a 'all:' file dependency specification."
|
|
}
|
|
|
|
eval_cmd $1
|