From: Christoph Sommer Date: Sat, 21 Jan 2012 09:53:38 +0000 (+0100) Subject: add autotools-like wrapper configure and Makefile X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=d67e254c942c192c47a1d1ab1198cc532f29f522;p=supertux.git add autotools-like wrapper configure and Makefile --- diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..f802d676a --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +.PHONY: all + +all: + +make -C build + diff --git a/configure b/configure new file mode 100755 index 000000000..b728243c3 --- /dev/null +++ b/configure @@ -0,0 +1,9 @@ +#!/bin/bash + +# abort on errors +set -e + +mkdir -p build +cd build +cmake .. "$@" +