diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
commit | 3fff6023602822531efdae30bc8ebf862967f1ef (patch) | |
tree | 16028102b8d850f8ab3115d28a8539ca6bc5f51d /VexRiscvSocSoftware/resources/recursive.mk |
Initial Commit
Diffstat (limited to 'VexRiscvSocSoftware/resources/recursive.mk')
-rw-r--r-- | VexRiscvSocSoftware/resources/recursive.mk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/VexRiscvSocSoftware/resources/recursive.mk b/VexRiscvSocSoftware/resources/recursive.mk new file mode 100644 index 0000000..0be9991 --- /dev/null +++ b/VexRiscvSocSoftware/resources/recursive.mk @@ -0,0 +1,13 @@ +SUBDIRS := $(wildcard */.) + +all: + for dir in $(SUBDIRS); do \ + (cd $$dir; ${MAKE} all); \ + done + +clean: + for dir in $(SUBDIRS); do \ + (cd $$dir; ${MAKE} clean); \ + done + +.PHONY: all $(SUBDIRS)
\ No newline at end of file |