From: Charles McGarvey Date: Fri, 8 Apr 2022 20:10:50 +0000 (-0600) Subject: add more files to clean X-Git-Tag: v0.900~13 X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-File-KDBX-XS;a=commitdiff_plain;h=37a9add7da997ad04b7de81bc42520e00e60608e add more files to clean --- diff --git a/Makefile.PL b/Makefile.PL index 05b01e6..4649ca4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -14,7 +14,7 @@ use ExtUtils::MakeMaker; my (@EUMM_INC_LIB, $myarflags, $mycflags); # use bundled libtomcrypt -my @myobjs = map { /^(.*)\.c$/ ? "$1.$Config{obj_ext}" : () } qw( +my @myobjs = map { /^(.*)\.c$/ ? "$1$Config{obj_ext}" : () } qw( libtomcrypt/src/ciphers/aes/aes.c libtomcrypt/src/misc/compare_testvector.c libtomcrypt/src/misc/crypt/crypt_argchk.c @@ -56,6 +56,7 @@ $mycflags = "$mycflags -Wall -Werror -Wextra" if $ENV{AUTHOR_MODE}; : '-DLTM_DESC -Ilibtomcrypt/src/headers', MYEXTLIB => "libtomcrypt/libonlyaes$Config{lib_ext}", clean => { FILES => join(' ', @myobjs, "libtomcrypt/libonlyaes$Config{lib_ext}") }, + realclean => { FILES => join(' ', qw{cover_db *.gcda *.gcno *.gcov})}, ); #FIX: https://github.com/DCIT/perl-CryptX/pull/79