diff options
Diffstat (limited to 'cpp/src/slice2cppe')
-rw-r--r-- | cpp/src/slice2cppe/Makefile.mak | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/cpp/src/slice2cppe/Makefile.mak b/cpp/src/slice2cppe/Makefile.mak index cd8d60b7322..471322ad3e7 100644 --- a/cpp/src/slice2cppe/Makefile.mak +++ b/cpp/src/slice2cppe/Makefile.mak @@ -35,11 +35,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 |