diff options
author | lloyd <[email protected]> | 2010-06-10 14:34:47 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-10 14:34:47 +0000 |
commit | 3bee3609a8fc56960ae60949f14f6bb25489717d (patch) | |
tree | add575ca13f8ac643d42e3f4306bd30a2134a3dc | |
parent | 52a53a6da830c200a50c6780bf4aeecaa587fe70 (diff) |
Fix clean/distclean targets for nmake
-rw-r--r-- | src/build-data/makefile/nmake.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/build-data/makefile/nmake.in b/src/build-data/makefile/nmake.in index e152f0c65..3c774c2af 100644 --- a/src/build-data/makefile/nmake.in +++ b/src/build-data/makefile/nmake.in @@ -96,10 +96,12 @@ static: $(STATIC_LIB) ################################################## clean: $(RM) %{build_dir}\lib\* %{build_dir}\checks\* - $(RM) $(LIBRARIES) $(CHECK) + $(RM) $(LIBRARIES) $(CHECK).exe distclean: clean $(RM) %{build_dir}\build.h + $(RM) %{build_dir}\botan.doxy + $(RM) %{build_dir}\botan.iss $(RM) %{build_dir}\include\botan\* $(RMDIR) %{build_dir}\include\botan %{build_dir}\include $(RMDIR) %{build_dir}\lib %{build_dir}\checks |