From 0e53cdd4e1462f4ca2ee7834f8feb62a21b8375a Mon Sep 17 00:00:00 2001 From: mguthaus Date: Mon, 12 Feb 2018 13:23:22 -0800 Subject: [PATCH] Add top-level Makefile for all technologies. --- lib/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/Makefile diff --git a/lib/Makefile b/lib/Makefile new file mode 100644 index 00000000..07a149a3 --- /dev/null +++ b/lib/Makefile @@ -0,0 +1,7 @@ +SUBDIRS := $(wildcard */.) + +all: $(SUBDIRS) +$(SUBDIRS): + $(MAKE) -C $@ + +.PHONY: all $(SUBDIRS)