summaryrefslogtreecommitdiffstats
path: root/tools/update/ampolish
diff options
context:
space:
mode:
Diffstat (limited to 'tools/update/ampolish')
-rwxr-xr-xtools/update/ampolish17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/update/ampolish b/tools/update/ampolish
index aeec1ba050..af267e8bb9 100755
--- a/tools/update/ampolish
+++ b/tools/update/ampolish
@@ -134,6 +134,10 @@ else { $rtems_top .= "/" ; }
{
push @ibuf, "include \$(top_srcdir)/${rtems_top}automake/lib.am\n" ;
}
+ elsif ( /^[\s]*include[\s\t]*.*compile.am[\s]*$/o )
+ {
+ # remove the line
+ }
elsif ( /^(.*[^\s])[\s]*$/o )
{ # remove trailing spaces
push @ibuf, "$1\n" ;
@@ -220,6 +224,7 @@ else { $rtems_top .= "/" ; }
{
if ( "$1" eq "lib" )
{
+ push @ibuf, "include \$(top_srcdir)/${rtems_top}automake/compile.am\n" ;
push @ibuf, "include \$(top_srcdir)/${rtems_top}automake/$1.am\n" ;
}
elsif ( "$1" eq "local" )
@@ -231,6 +236,18 @@ else { $rtems_top .= "/" ; }
$main::seen_host = 1 ;
}
}
+ elsif ( /^[\s]*include[\s\t]*\$\(RTEMS_ROOT\)\/make\/(.*)\.cfg$/o )
+ {
+ if ( "$1" eq "leaf" )
+ {
+ push @ibuf, "include \$(top_srcdir)/${rtems_top}automake/compile.am\n" ;
+ push @ibuf, "include \$(RTEMS_ROOT)/make/$1.cfg\n" ;
+ }
+ else
+ {
+ push @ibuf, "include \$(RTEMS_ROOT)/make/$1.cfg\n" ;
+ }
+ }
elsif ( /^[\s]*include[\s\t]*(.*)$/o )
{
push @ibuf, "include $1\n" ;