From 75998e094974d411b3061c86266f9d2af472d391 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 6 Mar 2011 17:41:14 +0100 Subject: [PATCH] Makefile so it's easier to one-step build this --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..22ff654b5 --- /dev/null +++ b/Makefile @@ -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