summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rwxr-xr-xmakefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100755
index 0000000..db266b5
--- /dev/null
+++ b/makefile
@@ -0,0 +1,13 @@
+#-----------------------------------------------
+# This makefile builds all the example projects
+#-----------------------------------------------
+
+DIRS = $(wildcard */makefile)
+
+all clean gfx .PHONY: $(DIRS)
+
+$(DIRS):
+ $(MAKE) -C $(dir $@) $(MAKECMDGOALS)
+
+.PHONY: all clean gfx
+