X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=extras%2Fmake.pl;h=ee5663a306496e11682eca83ade8c630204f23c0;hb=a8468e72429bfebb1035cd2d44481816b42f84c7;hp=15b9cc75e74a20feaf10ec7c0acaf70c55b84015;hpb=77536f83e3209cfce4d6069080ab7fd85a2e8ea1;p=vlc diff --git a/extras/make.pl b/extras/make.pl index 15b9cc75e7..ee5663a306 100755 --- a/extras/make.pl +++ b/extras/make.pl @@ -29,18 +29,18 @@ while() $line =~ /^test\s\-z\s/ || $line =~ /^Making\sclean\sin\s\./ || $line =~ /^then\smv/ || - $line =~ /make\s\sall-recursive/ ) + $line =~ /make\s\sall-recursive/ || + $line =~ s/^[A-z0-9-]*ar\s[A-z0-9]*\s([A-z0-9\-_\/\.]*)\s.*//g || + $line =~ s/^rm\s\-f\s(.*)//g ) {} # Info elsif( $line =~ s/^.* (lib.*\.so).*/ LINK : $1/g || - $line =~ s/^.* (lib.*\.o)\s\.\/(.*)/ COMPILE : $2 -> $1/g || - $line =~ s/^.* (lib.*\.o)\s`.*`(.*);/ COMPILE : $2 -> $1/g || - $line =~ s/^ar\s[A-z0-9]*\s([A-z0-9\-_\/\.]*)\s.*/ ARCHIVE : $1/g || - $line =~ s/^ranlib\s(.*)/ RANLIB : $1/g || + $line =~ s/^.* (lib.*\.o)\s\.\/(.*)/ COMPILE : $2/g || + $line =~ s/^.* (lib.*\.o)\s`.*`(.*);\ \\/ COMPILE : $2/ || + $line =~ s/^[A-z0-9-]*ranlib\s(.*)/ RANLIB : $1/g || $line =~ s/^Making\sall\sin\s(.*)/MAKE : $1/g || $line =~ s/^Making\sclean\sin\s(.*)/CLEAN : $1/g || - $line =~ s/^rm\s\-f\s(.*)/ REMOVE : $1/g || $line =~ s/.*\-o\s([^\s]*)\s.*/ BUILD : $1/g) {