summaryrefslogtreecommitdiffstats
path: root/tools/update
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tools/update/Makefile.in15
-rwxr-xr-xtools/update/acpolish159
2 files changed, 170 insertions, 4 deletions
diff --git a/tools/update/Makefile.in b/tools/update/Makefile.in
index 2bd9896aa6..91a9ebcfb6 100644
--- a/tools/update/Makefile.in
+++ b/tools/update/Makefile.in
@@ -4,15 +4,19 @@
@SET_MAKE@
srcdir = @srcdir@
-VPATH = @srcdir@
-RTEMS_ROOT = @top_srcdir@
-PROJECT_ROOT = @PROJECT_ROOT@
+top_srcdir = @top_srcdir@
+top_builddir = ../..
+subdir = c/update-tools
INSTALL = @INSTALL@
+RTEMS_ROOT = $(top_srcdir)/@RTEMS_TOPdir@
+PROJECT_ROOT = @PROJECT_ROOT@
+
+VPATH = @srcdir@
+
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
include $(RTEMS_ROOT)/make/leaf.cfg
-include $(RTEMS_ROOT)/make/rtems.cfg
DESTDIR=$(PROJECT_RELEASE)/update-tools
@@ -43,3 +47,6 @@ $(INSTALLED_DATA): $(MISC_SUPPORT)
install: $(DESTDIR) $(INSTALLED_PGMS) $(INSTALLED_DATA)
+%: $(srcdir)/%.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
diff --git a/tools/update/acpolish b/tools/update/acpolish
new file mode 100755
index 0000000000..485ba2131c
--- /dev/null
+++ b/tools/update/acpolish
@@ -0,0 +1,159 @@
+#!/usr/bin/perl
+
+#
+# Perl script to beautify and enhance RTEMS autoconf Makefile.ins
+#
+# Reads from stdin and writes to stdout
+#
+# usage:
+# acpolish <Makefile.in >Makefile.in~
+# mv Makefile.in~ Makefile.in
+#
+# ATTENTION: This file contains embedded tabs
+
+if ( -f "Makefile.am" )
+{
+ # Refuse to work on autoconfiscated Makefile.ins;
+ # redirecting STDOUT to Makefile.in will trash the Makefile.in ;-
+
+ die "acpolish must not be run in autoconfiscated directories" ;
+}
+
+
+my $build_pgms_seen = "" ;
+my $top_builddir = "";
+my $subdir = "";
+
+sub find_root
+{
+ $top_builddir = "." ;
+ $subdir="";
+ my $pwd = `pwd`; chomp $pwd;
+ $pwd .= "/" ;
+ my $len ;
+
+ if ( -f "configure.in" ) { return $top_builddir ; }
+ my $i = rindex($pwd,'/');
+
+ $len = $i;
+ $pwd = substr($pwd,0,$len);
+ $i = rindex($pwd,'/');
+ $subdir = substr($pwd,$i+1,$len - 1);
+ $top_builddir = ".." ;
+
+ while( -d "$top_builddir" )
+ {
+ if ( -f "${top_builddir}/configure.in" )
+ {
+ return $top_builddir ;
+ }
+ $len=$i;
+ $pwd = substr($pwd,0,$len);
+ $i = rindex($pwd,'/');
+ $subdir = substr($pwd,$i+1,$len - 1) . "/$subdir";
+ $top_builddir .= "/.." ;
+ } ;
+ die "Can't find configure.in\n" ;
+}
+
+find_root();
+
+my $nl_seen = 0 ;
+
+while( <> )
+{
+ if ( /^[ ]*$/o )
+ {
+ $nl_seen = $nl_seen+1;
+ }
+
+ if ( /^[ ]*srcdir[ ]*=.*$/o )
+ {
+ print "\@SET_MAKE\@\n" ;
+ print "$_" ;
+ print "top_srcdir = \@top_srcdir\@\n" ;
+ print "top_builddir = $top_builddir\n" ;
+ print "subdir = $subdir\n" if "$subdir" ;
+ print "\nINSTALL = \@INSTALL\@\n\n";
+ print "RTEMS_ROOT = \$(top_srcdir)/\@RTEMS_TOPdir\@\n" ;
+ print "PROJECT_ROOT = \@PROJECT_ROOT\@\n\n" ;
+ $nl_seen=1;
+ }
+ elsif ( /^[ ]*top_srcdir[ ]*=.*$/o )
+ {
+ # remove the line
+ }
+ elsif ( /^[ ]*top_builddir[ ]*=.*$/o )
+ {
+ # remove the line
+ }
+ elsif ( /^[ ]*Makefile:.*/o )
+ { # consume the block
+ while( <> ) { last if /^[ ]*$/o ; }
+ }
+ elsif ( /^[ ]*%:[ ]\$\(srcdir\)\/%\.in.*$/o )
+ { # consume the block
+ while( <> ) { last if /^[ ]*$/o ; }
+ }
+ elsif ( /^[ ]*RTEMS_ROOT[ ]*=.*$/o )
+ {
+ # remove the line
+ }
+ elsif ( /^[ ]*PROJECT_ROOT[ ]*=.*$/o )
+ {
+ # remove the line
+ }
+ elsif ( /^[ ]*INSTALL[ ]*=[ ]*\@INSTALL\@.*$/o )
+ {
+ # remove the line
+ }
+ elsif ( /^[ ]*subdir[ ]*=.*$/o )
+ {
+ # remove the line
+ }
+ elsif ( /^[ ]*\@SET_MAKE\@.*$/o )
+ {
+ # remove the line
+ }
+ elsif ( /^include[ ]*.*rtems\.cfg.*$/o )
+ {
+ # remove the line
+ }
+ elsif ( /^[ ]*BUILD_PGMS.*=.*$/o )
+ {
+ $build_pgms_seen = "true" ;
+ print "$_" ;
+ $nl_seen=0;
+ }
+ elsif ( /^[ ]*$/o )
+ {
+ print "$_" if $nl_seen < 2 ;
+ }
+ else
+ {
+ print "$_" ;
+ $nl_seen = 0;
+ }
+} # while
+
+print "\n" if $nl_seen < 1 ;
+
+# Add rules for config.status generated files
+if ( "$build_pgms_seen" )
+{
+print "%: \$(srcdir)/%.in \$(top_builddir)/config.status\n" ;
+print " cd \$(top_builddir) \\\n" ;
+print " && CONFIG_FILES=" ;
+print "\$(subdir)/" if ( "$subdir" );
+print "\$@ CONFIG_HEADERS= \$(SHELL) ./config.status\n";
+}
+else
+{
+print "Makefile: \$(srcdir)/Makefile.in \$(top_builddir)/config.status\n" ;
+print " cd \$(top_builddir) \\\n" ;
+print " && CONFIG_FILES=" ;
+print "\$(subdir)/" if ( "$subdir" );
+print "\$@ CONFIG_HEADERS= \$(SHELL) ./config.status\n";
+}
+
+;1