summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-09-11 17:38:07 +0200
committerJose <jose@zeroc.com>2014-09-11 17:38:07 +0200
commitc23959aa7a6bb1f81f1834fd68aed48962fd6e2e (patch)
treea1d14ec52574508a3e9e3492462c3a845e0912e7 /Makefile
parentFix dependencies causing C++ rebuilds (diff)
downloadice-c23959aa7a6bb1f81f1834fd68aed48962fd6e2e.tar.bz2
ice-c23959aa7a6bb1f81f1834fd68aed48962fd6e2e.tar.xz
ice-c23959aa7a6bb1f81f1834fd68aed48962fd6e2e.zip
Revert "Fixed (ICE-3792) - dependencies in the repository are very crappy"
This reverts commit 201d395c7186e50d195672db7b472989783826cb. Conflicts: cpp/config/Make.rules cpp/test/Ice/Makefile.mak
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a4633c0e159..1613688a503 100644
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,7 @@
SUBDIRS = cpp java cs py rb php js
CLEAN_SUBDIRS = js java cs py rb php cpp
+DEPEND_SUBDIRS = cpp cs py rb php
INSTALL_SUBDIRS = cpp java cs py rb php js
all::
@@ -25,6 +26,13 @@ clean::
( cd $$subdir && $(MAKE) clean ) || exit 1; \
done
+depend::
+ @for subdir in $(DEPEND_SUBDIRS); \
+ do \
+ echo "making depend in $$subdir"; \
+ ( cd $$subdir && $(MAKE) depend ) || exit 1; \
+ done
+
install::
@for subdir in $(INSTALL_SUBDIRS); \
do \