Clean *.lst files created by XLC
parent
9ce1648f83
commit
aee00b69ad
|
|
@ -875,8 +875,9 @@ distclean: clean autotools-clean cmake-clean
|
||||||
-$(RM) adhoc.cpp adhoc.cpp.copied GNUmakefile.deps benchmarks.html cryptest.txt
|
-$(RM) adhoc.cpp adhoc.cpp.copied GNUmakefile.deps benchmarks.html cryptest.txt
|
||||||
@-$(RM) cryptest-*.txt cryptopp.tgz libcryptopp.pc *.o *.bc *.ii *~
|
@-$(RM) cryptest-*.txt cryptopp.tgz libcryptopp.pc *.o *.bc *.ii *~
|
||||||
@-$(RM) -r cryptlib.lib cryptest.exe *.suo *.sdf *.pdb Win32/ x64/ ipch/
|
@-$(RM) -r cryptlib.lib cryptest.exe *.suo *.sdf *.pdb Win32/ x64/ ipch/
|
||||||
@-$(RM) -r $(LIBOBJS:.o=.obj) $(TESTOBJS:.o=.obj) $(DOCUMENT_DIRECTORY)/
|
@-$(RM) -r $(LIBOBJS:.o=.obj) $(TESTOBJS:.o=.obj)
|
||||||
@-$(RM) -r TestCoverage/
|
@-$(RM) -r $(LIBOBJS:.o=.lst) $(TESTOBJS:.o=.lst)
|
||||||
|
@-$(RM) -r TestCoverage/ ref*/
|
||||||
@-$(RM) cryptopp$(LIB_VER)\.* CryptoPPRef.zip
|
@-$(RM) cryptopp$(LIB_VER)\.* CryptoPPRef.zip
|
||||||
|
|
||||||
# Install cryptest.exe, libcryptopp.a, libcryptopp.so and libcryptopp.pc.
|
# Install cryptest.exe, libcryptopp.a, libcryptopp.so and libcryptopp.pc.
|
||||||
|
|
|
||||||
|
|
@ -392,11 +392,6 @@ SOLIB_COMPAT_SUFFIX=.$(LIB_MAJOR)
|
||||||
SOLIB_FLAGS=-Wl,-soname,libcryptopp.so$(SOLIB_COMPAT_SUFFIX)
|
SOLIB_FLAGS=-Wl,-soname,libcryptopp.so$(SOLIB_COMPAT_SUFFIX)
|
||||||
endif # HAS_SOLIB_VERSION
|
endif # HAS_SOLIB_VERSION
|
||||||
|
|
||||||
# GNUmakefile-cross does not build the docs. But keep this variable
|
|
||||||
# in case the distclean recipe from the GNUmakefile is copied here.
|
|
||||||
# It avoids the goodness when $(DOCUMENT_DIRECTORY)/ is empty.
|
|
||||||
DOCUMENT_DIRECTORY ?= /tmp/cryptopp
|
|
||||||
|
|
||||||
###########################################################
|
###########################################################
|
||||||
##### Targets and Recipes #####
|
##### Targets and Recipes #####
|
||||||
###########################################################
|
###########################################################
|
||||||
|
|
@ -457,7 +452,8 @@ distclean: clean autotools-clean cmake-clean
|
||||||
@-$(RM) cryptest-*.txt cryptopp.tgz libcryptopp.pc *.o *.bc *.ii *~
|
@-$(RM) cryptest-*.txt cryptopp.tgz libcryptopp.pc *.o *.bc *.ii *~
|
||||||
@-$(RM) -r cryptlib.lib cryptest.exe *.suo *.sdf *.pdb Win32/ x64/ ipch/
|
@-$(RM) -r cryptlib.lib cryptest.exe *.suo *.sdf *.pdb Win32/ x64/ ipch/
|
||||||
@-$(RM) -r $(LIBOBJS:.o=.obj) $(TESTOBJS:.o=.obj)
|
@-$(RM) -r $(LIBOBJS:.o=.obj) $(TESTOBJS:.o=.obj)
|
||||||
@-$(RM) -r TestCoverage/
|
@-$(RM) -r $(LIBOBJS:.o=.lst) $(TESTOBJS:.o=.lst)
|
||||||
|
@-$(RM) -r TestCoverage/ ref*/
|
||||||
@-$(RM) cryptopp$(LIB_VER)\.* CryptoPPRef.zip
|
@-$(RM) cryptopp$(LIB_VER)\.* CryptoPPRef.zip
|
||||||
|
|
||||||
# Install cryptest.exe, libcryptopp.a and libcryptopp.so.
|
# Install cryptest.exe, libcryptopp.a and libcryptopp.so.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue