diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-03-27 13:42:33 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-03-27 13:42:33 +0000 |
commit | 33e94068bea8c4460ba0fe0711bd790a22d345ca (patch) | |
tree | 7a5357d538360f441b252f2a48447225d0221724 /cppe/src | |
parent | Tuned compiler options for small code size (diff) | |
download | ice-33e94068bea8c4460ba0fe0711bd790a22d345ca.tar.bz2 ice-33e94068bea8c4460ba0fe0711bd790a22d345ca.tar.xz ice-33e94068bea8c4460ba0fe0711bd790a22d345ca.zip |
Cleaned up some warnings
Diffstat (limited to 'cppe/src')
-rwxr-xr-x | cppe/src/IceE/Makefile.mak | 2 | ||||
-rwxr-xr-x | cppe/src/IceEC/Makefile.mak | 2 | ||||
-rwxr-xr-x | cppe/src/Makefile.mak | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cppe/src/IceE/Makefile.mak b/cppe/src/IceE/Makefile.mak index 04026967b3b..9aa327766a2 100755 --- a/cppe/src/IceE/Makefile.mak +++ b/cppe/src/IceE/Makefile.mak @@ -92,7 +92,7 @@ SDIR = $(slicedir)\IceE !include $(top_srcdir)\config\Make.rules.mak -CPPFLAGS = -I.. $(CPPFLAGS) -DICE_API_EXPORTS -DFD_SETSIZE=1024 -WX +CPPFLAGS = -I.. $(CPPFLAGS) -DICE_API_EXPORTS -DFD_SETSIZE=1024 -WX -DWIN32_LEAN_AND_MEAN SLICE2CPPEFLAGS = --ice --include-dir IceE --dll-export ICE_API $(SLICE2CPPEFLAGS) !if "$(OPTIMIZE_SPEED)" != "yes" & "$(OPTIMIZE_SIZE)" != "yes" diff --git a/cppe/src/IceEC/Makefile.mak b/cppe/src/IceEC/Makefile.mak index 8aa2725ac32..c6519a29609 100755 --- a/cppe/src/IceEC/Makefile.mak +++ b/cppe/src/IceEC/Makefile.mak @@ -73,7 +73,7 @@ ICEE_OBJS = BasicStream.obj \ !include $(top_srcdir)\config\Make.rules.mak -CPPFLAGS = -I.. $(CPPFLAGS) -DICE_API_EXPORTS -DFD_SETSIZE=1024 -DICEE_PURE_CLIENT +CPPFLAGS = -I.. $(CPPFLAGS) -DICE_API_EXPORTS -DFD_SETSIZE=1024 -DICEE_PURE_CLIENT -DWIN32_LEAN_AND_MEAN !if "$(OPTIMIZE_SPEED)" != "yes" & "$(OPTIMIZE_SIZE)" != "yes" !if "$(STATICLIBS)" == "yes" diff --git a/cppe/src/Makefile.mak b/cppe/src/Makefile.mak index 24a12c431b4..6dc9aafe85b 100755 --- a/cppe/src/Makefile.mak +++ b/cppe/src/Makefile.mak @@ -18,4 +18,4 @@ $(EVERYTHING):: @for %i in ( $(SUBDIRS) ) do \ @if exist %i \ @echo "making $@ in %i" & \ - cmd /c "cd %i & $(MAKE) -nologo -f Makefile.mak $@ || exit 1" + cmd /c "cd %i & $(MAKE) -nologo -f Makefile.mak $@" || exit 1 |