Add cleaning targets to Configurations/windows-makefile.tmpl

Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Richard Levitte 2016-03-10 01:51:53 +01:00
parent 03f880e4fc
commit 3415c711b0
1 changed files with 14 additions and 0 deletions

View File

@ -139,6 +139,20 @@ list-tests:
@set PERL=$(PERL)
@$(PERL) $(SRCDIR)\test\run_tests.pl list
libclean:
del /Q /F $(LIBS) $(SHLIBS)
del lib.pdb
clean: libclean
del /Q /F $(PROGRAMS) $(TESTPROGS) $(ENGINES) $(SCRIPTS)
del /Q /S /F *.asm
del /Q /S /F *.d
del /Q /S /F *.obj
del /Q /S /F *.pdb
del /Q /S /F *.exp
del /Q /S /F engines\*.ilk
del /Q /S /F engines\*.lib
depend:
# Building targets ###################################################