diff options
author | Jose <jose@zeroc.com> | 2014-09-11 17:38:07 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-09-11 17:38:07 +0200 |
commit | c23959aa7a6bb1f81f1834fd68aed48962fd6e2e (patch) | |
tree | a1d14ec52574508a3e9e3492462c3a845e0912e7 /Makefile | |
parent | Fix dependencies causing C++ rebuilds (diff) | |
download | ice-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-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 \ |