Add more Autotools artifacts to distclean recipe

This commit is contained in:
Jeffrey Walton 2017-11-05 03:38:19 -05:00
parent 78a64e37d3
commit c50f2f23d8
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
3 changed files with 10 additions and 8 deletions

View File

@ -781,7 +781,7 @@ clean:
@-$(RM) libcryptopp.a libcryptopp.dylib cryptopp.dll libcryptopp.dll.a libcryptopp.import.a
@-$(RM) libcryptopp.so libcryptopp.so$(SOLIB_COMPAT_SUFFIX) libcryptopp.so$(SOLIB_VERSION_SUFFIX)
@-$(RM) cryptest.exe dlltest.exe cryptest.import.exe cryptest.info ct et
@-$(RM) *.gcov *.gcno *.gcda *.stackdump core core-*
@-$(RM) *.la *.gcov *.gcno *.gcda *.stackdump core core-*
@-$(RM) /tmp/adhoc.exe
@-$(RM) -r /tmp/cryptopp_test/
@-$(RM) -r *.exe.dSYM/
@ -794,8 +794,9 @@ distclean: clean
@-$(RM) cryptopp.tgz *.o *.bc *.ii *~
@-$(RM) -r $(SRCS:.cpp=.obj) cryptlib.lib cryptest.exe *.suo *.sdf *.pdb Win32/ x64/ ipch/
@-$(RM) -r $(DOCUMENT_DIRECTORY)/
@-$(RM) -f configure.ac configure Makefile.am Makefile *.m4 local.* lt*.sh missing libtool
@-$(RM) -f config.guess config.status config.sub depcomp install-sh compile stamp-h1
@-$(RM) -f configure.ac configure configure.in Makefile.am Makefile.in Makefile
@-$(RM) -f config.guess config.status config.sub depcomp install-sh compile
@-$(RM) -f stamp-h1 ar-lib *.m4 local.* lt*.sh missing libtool
@-$(RM) -rf m4/ auto*.cache/ .deps/
@-$(RM) -r TestCoverage/
@-$(RM) cryptopp$(LIB_VER)\.*
@ -980,7 +981,7 @@ rdrand-%.o:
./rdrand-nasm.sh
endif
# SSE4.2 or NEON available
# SSSE3 or NEON available
aria-simd.o : aria-simd.cpp
$(CXX) $(strip $(CXXFLAGS) $(ARIA_FLAG) -c) $<

View File

@ -328,7 +328,7 @@ clean:
@-$(RM) libcryptopp.a libcryptopp.dylib cryptopp.dll libcryptopp.dll.a libcryptopp.import.a
@-$(RM) libcryptopp.so libcryptopp.so$(SOLIB_COMPAT_SUFFIX) libcryptopp.so$(SOLIB_VERSION_SUFFIX)
@-$(RM) cryptest.exe dlltest.exe cryptest.import.exe cryptest.info ct rdrand-???.o
@-$(RM) *.gcno *.gcda *.stackdump core-*
@-$(RM) *.la *.gcov *.gcno *.gcda *.stackdump core core-*
@-$(RM) /tmp/adhoc.exe
@-$(RM) -r /tmp/cryptopp_test/
@-$(RM) -r *.exe.dSYM/
@ -340,8 +340,9 @@ distclean: clean
-$(RM) adhoc.cpp adhoc.cpp.copied GNUmakefile.deps benchmarks.html cryptest.txt cryptest-*.txt
@-$(RM) cryptopp.tgz *.o *.bc *.ii *~
@-$(RM) -r $(SRCS:.cpp=.obj) cryptlib.lib cryptest.exe *.suo *.sdf *.pdb Win32/ x64/ ipch/
@-$(RM) -f configure.ac configure Makefile.am Makefile *.m4 local.* lt*.sh missing libtool
@-$(RM) -f config.guess config.status config.sub depcomp install-sh compile stamp-h1
@-$(RM) -f configure.ac configure configure.in Makefile.am Makefile.in Makefile
@-$(RM) -f config.guess config.status config.sub depcomp install-sh compile
@-$(RM) -f stamp-h1 ar-lib *.m4 local.* lt*.sh missing libtool
@-$(RM) -rf m4/ auto*.cache/ .deps/
@-$(RM) -r TestCoverage/
@-$(RM) cryptopp$(LIB_VER)\.*

View File

@ -262,6 +262,6 @@ void Poly1305_Base<T>::Restart()
m_idx = 0;
}
template class Poly1305<AES>;
CRYPTOPP_EXTERN_STATIC_TEMPLATE_CLASS Poly1305<AES>;
NAMESPACE_END