Skip to content

Commit

Permalink
add autotools-like wrapper configure and Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
sommer committed Jan 21, 2012
1 parent 59fd648 commit d67e254
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.PHONY: all

all:
+make -C build

9 changes: 9 additions & 0 deletions configure
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

# abort on errors
set -e

mkdir -p build
cd build
cmake .. "$@"

0 comments on commit d67e254

Please sign in to comment.