From 64f6f0b39729ab425fed48cb188db9a4a0544c28 Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Mon, 18 Apr 2022 12:50:19 -0500 Subject: [PATCH] Add top level makefile for sw --- sw/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sw/Makefile 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