From 41ce755310d9f8b1f2435b0254f838e68e50180b Mon Sep 17 00:00:00 2001 From: Michael Wagner Date: Mon, 7 Mar 2016 15:54:34 +0100 Subject: [PATCH] posaune --- tools/make/configure | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 tools/make/configure diff --git a/tools/make/configure b/tools/make/configure new file mode 100755 index 0000000..c981fd5 --- /dev/null +++ b/tools/make/configure @@ -0,0 +1,20 @@ +#!/bin/bash +set -e + +function echo_usage { + echo "usage: configure [options]" + echo " -b " + echo " -a " +} + +# to build a package you need ... +# .co: checkout commands +# .cp: copy step +# .cpp (optional): commands to setup the C++ compile environment + +if [ $# -lt 2 ] +then + echo_usage + exit 1 +fi + -- 2.20.1