summaryrefslogtreecommitdiff
path: root/Makefile.sol.mingw
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.sol.mingw')
-rw-r--r--Makefile.sol.mingw6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.sol.mingw b/Makefile.sol.mingw
index 7fb7ccc..2aafe72 100644
--- a/Makefile.sol.mingw
+++ b/Makefile.sol.mingw
@@ -1,5 +1,7 @@
+SUBDIRS = lib
+
all:
- $(MAKE) -C lib -f Makefile.sol.mingw all
+ for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir -f Makefile.sol.mingw all ; done
clean:
- $(MAKE) -C lib -f Makefile.sol.mingw clean
+ for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir -f Makefile.sol.mingw clean ; done