Add top level makefile for sw

This commit is contained in:
Byron Lathi
2022-04-18 12:50:19 -05:00
parent 12284d19a9
commit 64f6f0b397

9
sw/Makefile Normal file
View File

@@ -0,0 +1,9 @@
TOPTARGETS := all clean
SUBDIRS := $(wildcard */.)
$(TOPTARGETS): $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPTARGETS) $(SUBDIRS)