Makefile so it's easier to one-step build this

This commit is contained in:
Enno Rehling 2011-03-06 17:41:14 +01:00
parent cf9bf54a95
commit 75998e0949
1 changed files with 13 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
all: bin/example
bin:
mkdir bin
bin/example: bin/Makefile
cd bin ; make
bin/Makefile: bin
cd bin ; cmake ..
clean:
rm -rf bin