From 69b7f0f3ffd72fac57642fccc8c61aae2fd2ce36 Mon Sep 17 00:00:00 2001 From: On behalf of Bob Handsaker Date: Mon, 2 Feb 2009 15:52:52 +0000 Subject: [PATCH] Pass LIBS to recursive targets to facilitate building at Broad. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 69ed702..f74baa5 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ all-recur lib-recur clean-recur cleanlocal-recur install-recur: list='$(SUBDIRS)'; for subdir in $$list; do \ cd $$subdir; \ $(MAKE) CC="$(CC)" CXX="$(CXX)" DFLAGS="$(DFLAGS)" CFLAGS="$(CFLAGS)" \ - INCLUDES="$(INCLUDES)" $$target || exit 1; \ + INCLUDES="$(INCLUDES)" LIBS="$(LIBS)" $$target || exit 1; \ cd $$wdir; \ done; -- 2.39.2