diff --git a/hardware/Makefile b/hardware/Makefile new file mode 100644 index 0000000..a30d2f3 --- /dev/null +++ b/hardware/Makefile @@ -0,0 +1,8 @@ +# Recursive Make +SUBDIRS := $(wildcard */Makefile) + +all: $(SUBDIRS) +$(SUBDIRS): + $(MAKE) -C $(@D) + +.PHONY: all $(SUBDIRS)