From 7e83231167050fafe58357d533772e7d5e7082a6 Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Sun, 22 Apr 2012 10:25:05 +0300 Subject: [PATCH] Explicitly recurse through subdirs in stglibs. --- stglibs/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stglibs/Makefile b/stglibs/Makefile index 912be63d..6b9fbe40 100644 --- a/stglibs/Makefile +++ b/stglibs/Makefile @@ -7,9 +7,9 @@ include ../Makefile.conf .PHONY: all $(STG_LIBS) .PHONY: clean install uninstall includes all: $(STG_LIBS) - -$(STG_LIBS): - $(MAKE) $(MAKECMDGOALS) -C $@ + for LIB in $(STG_LIBS); do\ + $(MAKE) $(MAKECMDGOALS) -C $$LIB;\ + done includes: all -- 2.43.2