annotate src/osdep/unix/drivers @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
1 #!/bin/sh
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
2 # ========================================================================
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
3 # Copyright 1988-2006 University of Washington
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
4 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
5 # Licensed under the Apache License, Version 2.0 (the "License");
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
6 # you may not use this file except in compliance with the License.
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
7 # You may obtain a copy of the License at
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
8 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
9 # http://www.apache.org/licenses/LICENSE-2.0
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
10 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
11 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
12 # ========================================================================
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
13
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
14 # Program: Driver Linkage Generator
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
15 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
16 # Author: Mark Crispin
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
17 # Networks and Distributed Computing
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
18 # Computing & Communications
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
19 # University of Washington
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
20 # Administration Building, AG-44
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
21 # Seattle, WA 98195
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
22 # Internet: MRC@CAC.Washington.EDU
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
23 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
24 # Date: 11 October 1989
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
25 # Last Edited: 30 August 2006
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
26
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
27
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
28 # Erase old driver linkage
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
29 rm -f linkage.[ch]
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
30
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
31 # Now define the new list
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
32 for driver
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
33 do
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
34 echo "extern DRIVER "$driver"driver;" >> linkage.h
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
35 echo " mail_link (&"$driver"driver); /* link in the $driver driver */" | cat >> linkage.c
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
36 done

yatex.org