blob: db266b54e1ec906c01a55f23f7568fe3ef740d74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|