From 9a6959b2700ec54392fb2ffb145bacae66fc2269 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Wed, 18 Aug 2021 17:31:19 -0400 Subject: initial commit --- makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 makefile (limited to 'makefile') 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 + -- cgit v1.2.3