diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-08-31 03:18:04 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-08-31 03:18:04 +0000 |
commit | 503a9ad80ac497d8ca87c73b9bb373928e9b9e42 (patch) | |
tree | aea763e2d86457e273a2fb01b571a7c8c7b67b83 /cpp/src | |
parent | Added Makefile support for MSVC++ (diff) | |
download | ice-503a9ad80ac497d8ca87c73b9bb373928e9b9e42.tar.bz2 ice-503a9ad80ac497d8ca87c73b9bb373928e9b9e42.tar.xz ice-503a9ad80ac497d8ca87c73b9bb373928e9b9e42.zip |
- Added /nologo to each Makefile.
- Added batch rule to the .cpp.obj inference rule.
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Makefile.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Makefile.mak b/cpp/src/Makefile.mak index 38ff841c788..a0bf32073ab 100644 --- a/cpp/src/Makefile.mak +++ b/cpp/src/Makefile.mak @@ -44,4 +44,4 @@ $(EVERYTHING):: @for %i in ( $(SUBDIRS) ) do \ @if exist %i \ @echo "making $@ in %i" & \ - cmd /c "cd %i & $(MAKE) -f Makefile.mak $@" + cmd /c "cd %i & $(MAKE) -nologo -f Makefile.mak $@" |