add autotools-like wrapper configure and Makefile
authorChristoph Sommer <mail@christoph-sommer.de>
Sat, 21 Jan 2012 09:53:38 +0000 (10:53 +0100)
committerChristoph Sommer <mail@christoph-sommer.de>
Sat, 21 Jan 2012 10:09:13 +0000 (11:09 +0100)
Makefile [new file with mode: 0644]
configure [new file with mode: 0755]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..f802d67
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+.PHONY: all
+
+all:
+       +make -C build
+
diff --git a/configure b/configure
new file mode 100755 (executable)
index 0000000..b728243
--- /dev/null
+++ b/configure
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+# abort on errors
+set -e
+
+mkdir -p build
+cd build
+cmake .. "$@"
+