diff options
Diffstat (limited to 'cpp/src/slice2py')
-rw-r--r-- | cpp/src/slice2py/Makefile.mak | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2py/Makefile.mak b/cpp/src/slice2py/Makefile.mak index c40faec3197..903d0919232 100644 --- a/cpp/src/slice2py/Makefile.mak +++ b/cpp/src/slice2py/Makefile.mak @@ -21,7 +21,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 @@ -36,15 +36,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 |