diff options
Diffstat (limited to 'cpp/src/slice2cppe')
-rw-r--r-- | cpp/src/slice2cppe/Makefile.mak | 8 |
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 |