diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-06-12 16:07:35 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-06-12 16:07:35 +0800 |
commit | 8717f4f73f05fb65459cd6824377da490896486e (patch) | |
tree | 58e8089b57cdddc00c00c76907fb03932eec47c6 /cpp/src/IceUtil | |
parent | fix some demoscript problems discovered under w2008. (diff) | |
download | ice-8717f4f73f05fb65459cd6824377da490896486e.tar.bz2 ice-8717f4f73f05fb65459cd6824377da490896486e.tar.xz ice-8717f4f73f05fb65459cd6824377da490896486e.zip |
bug 3249 - nmake /f makefile.mak clean should remove both debug & non-debug libraries.
Diffstat (limited to 'cpp/src/IceUtil')
-rw-r--r-- | cpp/src/IceUtil/Makefile.mak | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/IceUtil/Makefile.mak b/cpp/src/IceUtil/Makefile.mak index 745b3cf3411..745a9163d9b 100644 --- a/cpp/src/IceUtil/Makefile.mak +++ b/cpp/src/IceUtil/Makefile.mak @@ -74,8 +74,7 @@ $(DLLNAME): $(OBJS) IceUtil.res !endif
clean::
- del /q $(DLLNAME:.dll=.*)
- del /q IceUtil.res
+ -del /q IceUtil.res
install:: all
copy $(LIBNAME) $(install_libdir)
|