You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2006/07/11 00:03:49 UTC

svn commit: r420642 - /incubator/stdcxx/trunk/etc/config/GNUmakefile.bin

Author: sebor
Date: Mon Jul 10 15:03:49 2006
New Revision: 420642

URL: http://svn.apache.org/viewvc?rev=420642&view=rev
Log:
2006-07-10  Martin Sebor  <se...@roguewave.com>

	* GNUmakefile.bin ($(RUNTARGET)): Simplified. Used the $* shell
	variable to pass all command line arguments to the invoked script.
	Added progress output.

Modified:
    incubator/stdcxx/trunk/etc/config/GNUmakefile.bin

Modified: incubator/stdcxx/trunk/etc/config/GNUmakefile.bin
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/GNUmakefile.bin?rev=420642&r1=420641&r2=420642&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/GNUmakefile.bin (original)
+++ incubator/stdcxx/trunk/etc/config/GNUmakefile.bin Mon Jul 10 15:03:49 2006
@@ -54,13 +54,16 @@
 	@$(MAKE) -C $(LIBDIR) 
 
 # link the localedef utility
-localedef: localedef.o aliases.o charmap.o codecvt.o collate.o ctype.o def.o \
-           diagnostic.o messages.o monetary.o numeric.o path.o time.o scanner.o
+localedef: localedef.o aliases.o charmap.o codecvt.o collate.o ctype.o \
+           def.o diagnostic.o messages.o monetary.o numeric.o path.o   \
+           time.o scanner.o
 	@echo "$(LD) $^ -o $@ $(LDFLAGS) $(LDLIBS)" >> $(LOGFILE)
 	$(LD) $^ -o $@ $(LDFLAGS) $(LDLIBS) $(TEEOPTS)
 
 # link the locale utility
-locale: locale.o aliases.o charmap.o codecvt.o collate.o def.o ctype.o diagnostic.o memchk.o messages.o monetary.o numeric.o path.o scanner.o time.o
+locale: locale.o aliases.o charmap.o codecvt.o collate.o def.o ctype.o \
+        diagnostic.o memchk.o messages.o monetary.o numeric.o path.o   \
+        scanner.o time.o
 	@echo "$(LD) $^ -o $@ $(LDFLAGS) $(LDLIBS)" >> $(LOGFILE)
 	$(LD) $^ -o $@ $(LDFLAGS) $(LDLIBS) $(TEEOPTS)
 
@@ -69,17 +72,14 @@
 
 # the rule builds the scripts that are run by the runall script
 $(RUNTARGET): 
-	@(echo "#! /bin/sh" > $@;                                            \
+	@(echo "making $@...";                                               \
+          echo "#!/bin/sh" > $@;                                             \
           locname=`echo $@ | sed "s:^\./::g;s:\.sh$$::g"`;                   \
           if [ "$@" = "sanity_test.sh" ]; then                               \
-              echo "$(BUILDDIR)/bin/run_utils -s"                            \
-                   "-b $(BUILDDIR)/bin \\" >>$@;                             \
+              echo "./run_utils -s -b $(BUILDDIR)/bin $$""*" >>$@;           \
           else                                                               \
-              echo "$(BUILDDIR)/bin/run_utils -f -i $(NLSDIR)"               \
-                   "-l $$locname \\" >> $@;                                  \
+              echo "./run_utils -f -i $(NLSDIR) -l $$locname $$""*" >> $@;   \
           fi;                                                                \
-          echo "    $$""1 $$""2 $$""3 $$""4 $$""5 $$""6 $$""7 $$""8 $$""9"   \
-               >> $@;                                                        \
           chmod ug+x $@;)
 
 # the rule presents as dependencies the source files corresponding