summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cppe
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-01-09 15:58:23 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-01-09 15:58:23 +0000
commit4ba1e534cd256e3db901424e9214ee8cc3569955 (patch)
tree2f3297f3a87d30f18990b59fc1b9354a6f734c97 /cpp/src/slice2cppe
parentfix exe/lib flag snafu (diff)
downloadice-4ba1e534cd256e3db901424e9214ee8cc3569955.tar.bz2
ice-4ba1e534cd256e3db901424e9214ee8cc3569955.tar.xz
ice-4ba1e534cd256e3db901424e9214ee8cc3569955.zip
Added CPP_COMPILER setting
Diffstat (limited to 'cpp/src/slice2cppe')
-rw-r--r--cpp/src/slice2cppe/Makefile.mak8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2cppe/Makefile.mak b/cpp/src/slice2cppe/Makefile.mak
index 5d7c2da4e19..1b23aa31733 100644
--- a/cpp/src/slice2cppe/Makefile.mak
+++ b/cpp/src/slice2cppe/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