home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Atari / Gnu / gdb36p4s.zoo / munch < prev    next >
Text File  |  1993-07-28  |  467b  |  18 lines

  1. #! /bin/sh
  2.  
  3. # create an initialization procedure from a list of .o files
  4.  
  5. echo '/* Do not modify this file.  It is created automatically by "munch". */'
  6. echo 'void initialize_all_files () {'
  7.  
  8. if test "$1" = "-DSYSV" ; then
  9.     shift;
  10.     nm $* | egrep '^(.*[^a-zA-Z_]_|_)initialize_' | \
  11.     sed -e 's/^.*\(_initialize_[a-zA-Z0-9_]*\)[^a-zA-Z0-9_].*$/   \1 ();/'
  12. else
  13.     nm -p $* | egrep 'T *__initialize_' | \
  14.     sed -e 's/^.*T *_*\([^_ ].*\)/    _\1 ();/'
  15. fi
  16.  
  17. echo '}'
  18.