diff options
Diffstat (limited to 'frontends/calculator/CEdev/examples/makefile')
| -rw-r--r-- | frontends/calculator/CEdev/examples/makefile | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/frontends/calculator/CEdev/examples/makefile b/frontends/calculator/CEdev/examples/makefile index 852ed6c..33f84cd 100644 --- a/frontends/calculator/CEdev/examples/makefile +++ b/frontends/calculator/CEdev/examples/makefile @@ -1,12 +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 +#-----------------------------------------------
+# This makefile builds all the example projects
+#-----------------------------------------------
+
+DIRS = $(wildcard */makefile)
+
+all clean gfx .PHONY: $(DIRS)
+
+$(DIRS):
+ $(MAKE) -C $(dir $@) $(MAKECMDGOALS)
+
+.PHONY: all clean gfx
|