Add top-level Makefile for all technologies.

This commit is contained in:
mguthaus 2018-02-12 13:23:22 -08:00
parent 2245ecffa0
commit 0e53cdd4e1
1 changed files with 7 additions and 0 deletions

7
lib/Makefile Normal file
View File

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