diff options
Diffstat (limited to 'cpp/src/slice2py')
-rw-r--r-- | cpp/src/slice2py/Makefile.mak | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/cpp/src/slice2py/Makefile.mak b/cpp/src/slice2py/Makefile.mak index b1c1ae4706a..3d5994ae620 100644 --- a/cpp/src/slice2py/Makefile.mak +++ b/cpp/src/slice2py/Makefile.mak @@ -34,11 +34,20 @@ clean:: install:: all copy $(NAME) $(install_bindir) -!if "$(BORLAND_HOME)" == "" & "$(OPTIMIZE)" != "yes" +!if "$(OPTIMIZE)" != "yes" + +!if "$(BORLAND_HOME)" == "" install:: all copy $(NAME:.exe=.pdb) $(install_bindir) +!else + +install:: all + copy $(NAME:.exe=.tds) $(install_bindir) + +!endif + !endif !include .depend |