diff --git a/sw/Makefile b/sw/Makefile new file mode 100644 index 0000000..57f62b1 --- /dev/null +++ b/sw/Makefile @@ -0,0 +1,9 @@ +TOPTARGETS := all clean + +SUBDIRS := $(wildcard */.) + +$(TOPTARGETS): $(SUBDIRS) +$(SUBDIRS): + $(MAKE) -C $@ $(MAKECMDGOALS) + +.PHONY: $(TOPTARGETS) $(SUBDIRS) \ No newline at end of file