diff options
author | Richard Levitte <levitte@openssl.org> | 2016-05-16 14:58:33 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-05-25 00:46:00 +0200 |
commit | b202bf675b54dddf268d168a9a7c5db9f62e05ae (patch) | |
tree | e46c4991990e47e1ffa198f821c5a13d73664f8f /Configurations | |
parent | 05a7aee0e2b9102c8b2ececdc1dfdb727c453c95 (diff) |
Complete the list of files to clean up on Windows
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/windows-makefile.tmpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index e48aa2273d..454f2ed257 100644 --- a/Configurations/windows-makefile.tmpl +++ b/Configurations/windows-makefile.tmpl @@ -177,6 +177,8 @@ uninstall: uninstall_docs uninstall_sw libclean: $(PERL) -e "map { m/(.*)\.dll$$/; unlink glob """$$1.*"""; } @ARGV" $(SHLIBS) + $(PERL) -e "map { m/(.*)\.dll$$/; unlink glob """apps/$$1.*"""; } @ARGV" $(SHLIBS) + $(PERL) -e "map { m/(.*)\.dll$$/; unlink glob """test/$$1.*"""; } @ARGV" $(SHLIBS) -del /Q /F $(LIBS) -del /Q ossl_static.pdb @@ -189,6 +191,9 @@ clean: libclean -del /Q /S /F *.exp -del /Q /S /F engines\*.ilk -del /Q /S /F engines\*.lib + -del /Q /S /F apps\*.lib + -del /Q /S /F engines\*.manifest + -del /Q /S /F apps\*.manifest depend: |