| # Generate AUTHORS and include/authors.h |
| open(AUTHORS,"<AUTHORS") or die "Can't open AUTHORS"; |
| open(NEWAUTHORS,">AUTHORS.new"); |
| $ret = $anames[-1] cmp $bnames[-1]; |
| $ret = $anames[0] cmp $bnames[0] unless $ret; |
| @authors = sort cmpnames @authors; |
| for ($i = 0; $i < $#authors; $i++) |
| print NEWAUTHORS "$authors[$i],\n"; |
| print NEWAUTHORS "and $authors[$#authors].\n"; |
| print "Created AUTHORS.new\n"; |
| open(NEWAUTHORS_H,">include/authors.h"); |
| print NEWAUTHORS_H <<EOF; |
| static const char * const SHELL_People[] = |
| for ($i = 0; $i <= $#authors; $i++) |
| print NEWAUTHORS_H " \"$authors[$i]\",\n"; |
| print NEWAUTHORS_H " 0\n};\n"; |
| print NEWAUTHORS_H "\n#endif /* __WINE_AUTHORS_H */\n"; |
| print "Created include/authors.h\n"; |