diff options
Diffstat (limited to 'makefile')
| -rwxr-xr-x | makefile | 13 |
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 + |
