Added handy recursive make for making all hardware. I promise it's not harmful

new_hw_integrated
Richard Meadows 2015-06-15 22:41:37 +01:00
rodzic d3049cbd9d
commit bf61874f9b
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,8 @@
# Recursive Make
SUBDIRS := $(wildcard */Makefile)
all: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $(@D)
.PHONY: all $(SUBDIRS)