diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-01-09 15:58:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-01-09 15:58:23 +0000 |
commit | 4ba1e534cd256e3db901424e9214ee8cc3569955 (patch) | |
tree | 2f3297f3a87d30f18990b59fc1b9354a6f734c97 /cpp/src/slice2cpp | |
parent | fix exe/lib flag snafu (diff) | |
download | ice-4ba1e534cd256e3db901424e9214ee8cc3569955.tar.bz2 ice-4ba1e534cd256e3db901424e9214ee8cc3569955.tar.xz ice-4ba1e534cd256e3db901424e9214ee8cc3569955.zip |
Added CPP_COMPILER setting
Diffstat (limited to 'cpp/src/slice2cpp')
-rw-r--r-- | cpp/src/slice2cpp/Makefile.mak | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2cpp/Makefile.mak b/cpp/src/slice2cpp/Makefile.mak index 4beb654a8c4..23221a4d963 100644 --- a/cpp/src/slice2cpp/Makefile.mak +++ b/cpp/src/slice2cpp/Makefile.mak @@ -22,7 +22,7 @@ SRCS = $(OBJS:.obj=.cpp) CPPFLAGS = -I. $(CPPFLAGS) -DWIN32_LEAN_AND_MEAN -!if "$(BORLAND_HOME)" == "" & "$(OPTIMIZE)" != "yes" +!if "$(CPP_COMPILER)" != "BCC2006" & "$(OPTIMIZE)" != "yes" PDBFLAGS = /pdb:$(NAME:.exe=.pdb) !endif @@ -37,15 +37,15 @@ install:: all !if "$(OPTIMIZE)" != "yes" -!if "$(BORLAND_HOME)" == "" +!if "$(CPP_COMPILER)" == "BCC2006" install:: all - copy $(NAME:.exe=.pdb) $(install_bindir) + copy $(NAME:.exe=.tds) $(install_bindir) !else install:: all - copy $(NAME:.exe=.tds) $(install_bindir) + copy $(NAME:.exe=.pdb) $(install_bindir) !endif |