Merge branch 'lua_versions' into main/rendor-staging
[ryzomcore.git] / tool / build / buildquiet
blob45877eb2ace3f10e26c9e0dcbd21993abf73a98e
1 #!/usr/bin/perl -n
3 ###########################################################################
4 # $Id: buildquiet,v 1.2 2002/05/07 10:05:49 valignat Exp $
5 ###########################################################################
6 ###########################################################################
7 ###########################################################################
8 # BUILDQUIET:
10 # This tool is aimed to "cleanup" the 'make' command output to only
11 # print the compiled file name instead of the compilation 'command'.
13 # 'buildquiet' is used by the 'build' script.
15 ###########################################################################
17 if ( ! ( /^((Making)|(\/bin\/sh)|(.*rm)|(mkdir)|(mv)|(ar)|(ranlib)|(echo)|(\(cd)|(\(?ln))\s/ ))
19 # Replace 'make[2]: ' line
20 s/^make\[\d\]\:\s(.*)$/$1/;
22 # Replace the library creation line by only the library file name
23 s/^(ccache\s+)?(((gcc)|([cg]\+\+))\s-shared)\s.*\.libs\/([\w\.]+)$/ $6/;
25 # Replace the file compilation line by only the compiled file name
26 s/^(ccache\s+)?(gcc|([cg]\+\+)).*\s.+\/([\w\.]+.cpp).*$/ $4/;
27 s/^(ccache\s+)?(gcc|([cg]\+\+)).*\s.+-o\s([\w\.]+).*$/ $4/;
29 # Replace the install line
30 s/\s*\/usr\/bin\/install\s.*\s+(\.libs\/)?([^-][\.\w\-]+)\s+.*$/ Installing $2/;
32 if ( ! /^Nothing/ ) {
33 print;
37 # End of file