initial commit testing build chain

This commit is contained in:
2024-02-06 23:08:07 -08:00
commit 0a92e6eb25
4 changed files with 112 additions and 0 deletions

9
Makefile Normal file
View File

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