#!/bin/sh

if [[ ! -f .config ]]; then
	echo "Missing .config in ./" >&2
	exit 1
fi

if [[ -f ./"test" ]]; then
	isTest=1
	. ./test
	VERBOSE=-v
else
	isTest=""
	VERBOSE=
fi

. scripts/utils
. scripts/autobuild
. .config
