From c86baa678d5321bcbda1e8fcf3854d1c2dd26c9b Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Sun, 17 Mar 2013 11:36:51 -0700 Subject: [PATCH] Added makefile to rebuild all shaders for all examples. --- examples/makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/makefile diff --git a/examples/makefile b/examples/makefile new file mode 100644 index 00000000..6e26636c --- /dev/null +++ b/examples/makefile @@ -0,0 +1,15 @@ +# +# Copyright 2011-2013 Branimir Karadzic. All rights reserved. +# License: http://www.opensource.org/licenses/BSD-2-Clause +# + +rebuild: + @make -s --no-print-directory rebuild -C 01-cubes + @make -s --no-print-directory rebuild -C 02-metaballs + @make -s --no-print-directory rebuild -C 03-raymarch + @make -s --no-print-directory rebuild -C 04-mesh + @make -s --no-print-directory rebuild -C 05-instancing + @make -s --no-print-directory rebuild -C 06-bump + @make -s --no-print-directory rebuild -C 07-callback + @make -s --no-print-directory rebuild -C 08-update + @make -s --no-print-directory rebuild -C 09-hdr