summaryrefslogtreecommitdiff
path: root/frontends/calculator/CEdev/examples/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/calculator/CEdev/examples/makefile')
-rw-r--r--frontends/calculator/CEdev/examples/makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontends/calculator/CEdev/examples/makefile b/frontends/calculator/CEdev/examples/makefile
new file mode 100644
index 0000000..852ed6c
--- /dev/null
+++ b/frontends/calculator/CEdev/examples/makefile
@@ -0,0 +1,12 @@
+#-----------------------------------------------
+# This makefile builds all the example projects
+#-----------------------------------------------
+
+DIRS = $(wildcard */makefile)
+
+all clean gfx .PHONY: $(DIRS)
+
+$(DIRS):
+ $(MAKE) -C $(dir $@) $(MAKECMDGOALS)
+
+.PHONY: all clean gfx