From: Maxim Mamontov Date: Sun, 22 Apr 2012 07:25:05 +0000 (+0300) Subject: Explicitly recurse through subdirs in stglibs. X-Git-Tag: 2.409~415 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/7e83231167050fafe58357d533772e7d5e7082a6 Explicitly recurse through subdirs in stglibs. --- 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