* gprof.c (usage): Document "@FILE".
	* lexsup.c (help): Document "@FILE".
+2005-10-30  Mark Mitchell  <mark@codesourcery.com>
+
+       * as.c (show_usage): Document "@FILE".
+
 2005-10-30  H.J. Lu  <hongjiu.lu@intel.com>
 
        * Makefile.am (OBJ_FORMATS): Remove vms.
 
   fprintf (stream, _("\
   --listing-cont-lines    set the maximum number of continuation lines used\n\
                           for the output data column of the listing\n"));
+  fprintf (stream, _("\
+  @FILE                   read options from FILE\n")); 
 
   md_show_usage (stream);
 
 
-2005-10-25  Alan Modra  <amodra@bigpond.net.au>
+2005-10-30  Mark Mitchell  <mark@codesourcery.com>
 
-       * po/gprof.pot: Regenerate.
+       * gprof.c (usage): Document "@FILE".
 
 2005-09-30  Nick Clifton  <nickc@redhat.com>
 
 
        [--no-static] [--print-path] [--separate-files]\n\
        [--static-call-graph] [--sum] [--table-length=len] [--traditional]\n\
        [--version] [--width=n] [--ignore-non-functions]\n\
-       [--demangle[=STYLE]] [--no-demangle]\n\
+       [--demangle[=STYLE]] [--no-demangle] [@FILE]\n\
        [image-file] [profile-file...]\n"),
           whoami);
   if (status == 0)
 
+2005-10-30  Mark Mitchell  <mark@codesourcery.com>
+
+       * lexsup.c (help): Document "@FILE".
+
 2005-10-30  H.J. Lu  <hongjiu.lu@intel.com>
 
        * Makefile.am: Run "make dep-am".
 
 {
   unsigned i;
   const char **targets, **pp;
+  int len;
 
   printf (_("Usage: %s [options] file...\n"), program_name);
 
       if (ld_options[i].doc != NULL)
        {
          bfd_boolean comma;
-         int len;
          unsigned j;
 
          printf ("  ");
          printf ("%s\n", _(ld_options[i].doc));
        }
     }
+  printf (_("  @FILE"));
+  for (len = strlen ("  @FILE"); len < 30; len++)
+    putchar (' ');
+  printf (_("Read options from FILE\n"));
 
   /* Note: Various tools (such as libtool) depend upon the
      format of the listings below - do not change them.  */