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/Slice | |
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/Slice')
-rw-r--r-- | cpp/src/Slice/Makefile.mak | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cpp/src/Slice/Makefile.mak b/cpp/src/Slice/Makefile.mak index 58bcb71be62..5f2cc8cb487 100644 --- a/cpp/src/Slice/Makefile.mak +++ b/cpp/src/Slice/Makefile.mak @@ -81,10 +81,9 @@ Grammar.cpp Grammar.h: Grammar.y del /q Grammar.output
clean::
- del /q Grammar.cpp Grammar.h
- del /q Scanner.cpp
- del /q $(DLLNAME:.dll=.*)
- del /q Slice.res
+ -del /q Grammar.cpp Grammar.h
+ -del /q Scanner.cpp
+ -del /q Slice.res
install:: all
copy $(LIBNAME) $(install_libdir)
|