Include note about exicyclog and keeping more than 99 back copies.
[exim.git] / src / scripts / MakeLinks
1 #!/bin/sh
2 # $Cambridge: exim/src/scripts/MakeLinks,v 1.2 2004/12/16 15:11:47 tom Exp $
3
4 # Script to build links for all the exim source files from the system-
5 # specific build directory. It should be run from within that directory.
6
7 test ! -d ../src && \
8 echo "*** $0 should be run in a system-specific subdirectory." && \
9 exit 1
10 test -r version.c && \
11 echo "*** It appears that $0 has already been run." && \
12 exit 1
13 if [ -r pcre/Makefile ] ; then
14 echo "*** It appears that $0 was previously interrupted."
15 echo "*** You need to remove the build directory, and then run 'make' again."
16 exit 1
17 fi
18
19
20 # Initialize the file holding the compile number
21
22 echo "0" > cnumber.h
23
24 echo ""
25 echo ">>> Creating links to source files..."
26
27
28 # The PCRE regular expression library sources have to be linked
29 # independently in their own sub-directory, since their .o files
30 # are built using their own Makefile in the sub-directory.
31 mkdir pcre
32 cd pcre
33 ln -s ../../src/pcre/Makefile Makefile
34 ln -s ../../src/pcre/config.h config.h
35 ln -s ../../src/pcre/dftables.c dftables.c
36 ln -s ../../src/pcre/internal.h internal.h
37 ln -s ../../src/pcre/pcre.h pcre.h
38 ln -s ../../src/pcre/maketables.c maketables.c
39 ln -s ../../src/pcre/get.c get.c
40 ln -s ../../src/pcre/pcre.c pcre.c
41 ln -s ../../src/pcre/pcretest.c pcretest.c
42 ln -s ../../src/pcre/printint.c printint.c
43 ln -s ../../src/pcre/study.c study.c
44 cd ..
45
46 # Likewise for the lookups
47 mkdir lookups
48 cd lookups
49 ln -s ../../src/lookups/README README
50 ln -s ../../src/lookups/Makefile Makefile
51 ln -s ../../src/lookups/cdb.h cdb.h
52 ln -s ../../src/lookups/cdb.c cdb.c
53 ln -s ../../src/lookups/dbmdb.h dbmdb.h
54 ln -s ../../src/lookups/dbmdb.c dbmdb.c
55 ln -s ../../src/lookups/dnsdb.h dnsdb.h
56 ln -s ../../src/lookups/dnsdb.c dnsdb.c
57 ln -s ../../src/lookups/dsearch.h dsearch.h
58 ln -s ../../src/lookups/dsearch.c dsearch.c
59 ln -s ../../src/lookups/ibase.h ibase.h
60 ln -s ../../src/lookups/ibase.c ibase.c
61 ln -s ../../src/lookups/ldap.h ldap.h
62 ln -s ../../src/lookups/ldap.c ldap.c
63 ln -s ../../src/lookups/lsearch.h lsearch.h
64 ln -s ../../src/lookups/lsearch.c lsearch.c
65 ln -s ../../src/lookups/mysql.h mysql.h
66 ln -s ../../src/lookups/mysql.c mysql.c
67 ln -s ../../src/lookups/nis.h nis.h
68 ln -s ../../src/lookups/nis.c nis.c
69 ln -s ../../src/lookups/nisplus.h nisplus.h
70 ln -s ../../src/lookups/nisplus.c nisplus.c
71 ln -s ../../src/lookups/oracle.h oracle.h
72 ln -s ../../src/lookups/oracle.c oracle.c
73 ln -s ../../src/lookups/passwd.h passwd.h
74 ln -s ../../src/lookups/passwd.c passwd.c
75 ln -s ../../src/lookups/pgsql.h pgsql.h
76 ln -s ../../src/lookups/pgsql.c pgsql.c
77 ln -s ../../src/lookups/testdb.h testdb.h
78 ln -s ../../src/lookups/testdb.c testdb.c
79 ln -s ../../src/lookups/whoson.h whoson.h
80 ln -s ../../src/lookups/whoson.c whoson.c
81
82 ln -s ../../src/lookups/lf_functions.h lf_functions.h
83 ln -s ../../src/lookups/lf_check_file.c lf_check_file.c
84 ln -s ../../src/lookups/lf_quote.c lf_quote.c
85
86 cd ..
87
88 # Likewise for the code for the routers
89 mkdir routers
90 cd routers
91 ln -s ../../src/routers/README README
92 ln -s ../../src/routers/Makefile Makefile
93 ln -s ../../src/routers/accept.h accept.h
94 ln -s ../../src/routers/accept.c accept.c
95 ln -s ../../src/routers/dnslookup.h dnslookup.h
96 ln -s ../../src/routers/dnslookup.c dnslookup.c
97 ln -s ../../src/routers/ipliteral.h ipliteral.h
98 ln -s ../../src/routers/ipliteral.c ipliteral.c
99 ln -s ../../src/routers/iplookup.h iplookup.h
100 ln -s ../../src/routers/iplookup.c iplookup.c
101 ln -s ../../src/routers/manualroute.h manualroute.h
102 ln -s ../../src/routers/manualroute.c manualroute.c
103 ln -s ../../src/routers/queryprogram.h queryprogram.h
104 ln -s ../../src/routers/queryprogram.c queryprogram.c
105 ln -s ../../src/routers/redirect.h redirect.h
106 ln -s ../../src/routers/redirect.c redirect.c
107
108 ln -s ../../src/routers/rf_functions.h rf_functions.h
109 ln -s ../../src/routers/rf_change_domain.c rf_change_domain.c
110 ln -s ../../src/routers/rf_expand_data.c rf_expand_data.c
111 ln -s ../../src/routers/rf_get_errors_address.c rf_get_errors_address.c
112 ln -s ../../src/routers/rf_get_munge_headers.c rf_get_munge_headers.c
113 ln -s ../../src/routers/rf_get_transport.c rf_get_transport.c
114 ln -s ../../src/routers/rf_get_ugid.c rf_get_ugid.c
115 ln -s ../../src/routers/rf_queue_add.c rf_queue_add.c
116 ln -s ../../src/routers/rf_lookup_hostlist.c rf_lookup_hostlist.c
117 ln -s ../../src/routers/rf_self_action.c rf_self_action.c
118 ln -s ../../src/routers/rf_set_ugid.c rf_set_ugid.c
119
120 cd ..
121
122 # Likewise for the code for the transports
123 mkdir transports
124 cd transports
125 ln -s ../../src/transports/README README
126 ln -s ../../src/transports/Makefile Makefile
127 ln -s ../../src/transports/appendfile.h appendfile.h
128 ln -s ../../src/transports/appendfile.c appendfile.c
129 ln -s ../../src/transports/autoreply.h autoreply.h
130 ln -s ../../src/transports/autoreply.c autoreply.c
131 ln -s ../../src/transports/lmtp.h lmtp.h
132 ln -s ../../src/transports/lmtp.c lmtp.c
133 ln -s ../../src/transports/pipe.h pipe.h
134 ln -s ../../src/transports/pipe.c pipe.c
135 ln -s ../../src/transports/smtp.h smtp.h
136 ln -s ../../src/transports/smtp.c smtp.c
137
138 ln -s ../../src/transports/tf_maildir.c tf_maildir.c
139 ln -s ../../src/transports/tf_maildir.h tf_maildir.h
140
141 cd ..
142
143 # Likewise for the code for the authorization functions
144 mkdir auths
145 cd auths
146 ln -s ../../src/auths/README README
147 ln -s ../../src/auths/Makefile Makefile
148 ln -s ../../src/auths/b64encode.c b64encode.c
149 ln -s ../../src/auths/b64decode.c b64decode.c
150 ln -s ../../src/auths/call_pam.c call_pam.c
151 ln -s ../../src/auths/call_pwcheck.c call_pwcheck.c
152 ln -s ../../src/auths/call_radius.c call_radius.c
153 ln -s ../../src/auths/cyrus_sasl.c cyrus_sasl.c
154 ln -s ../../src/auths/cyrus_sasl.h cyrus_sasl.h
155 ln -s ../../src/auths/get_data.c get_data.c
156 ln -s ../../src/auths/get_no64_data.c get_no64_data.c
157 ln -s ../../src/auths/md5.c md5.c
158 ln -s ../../src/auths/xtextencode.c xtextencode.c
159 ln -s ../../src/auths/xtextdecode.c xtextdecode.c
160 ln -s ../../src/auths/cram_md5.c cram_md5.c
161 ln -s ../../src/auths/cram_md5.h cram_md5.h
162 ln -s ../../src/auths/plaintext.c plaintext.c
163 ln -s ../../src/auths/plaintext.h plaintext.h
164 ln -s ../../src/auths/pwcheck.c pwcheck.c
165 ln -s ../../src/auths/pwcheck.h pwcheck.h
166 ln -s ../../src/auths/auth-spa.c auth-spa.c
167 ln -s ../../src/auths/auth-spa.h auth-spa.h
168 ln -s ../../src/auths/sha1.c sha1.c
169 ln -s ../../src/auths/spa.c spa.c
170 ln -s ../../src/auths/spa.h spa.h
171 cd ..
172
173 # The basic source files for Exim and utilities. NB local_scan.h gets linked,
174 # but local_scan.c does not, because its location is taken from the build-time
175 # configuration. Likewise for the os.c file, which gets build dynamically.
176
177 ln -s ../src/dbfunctions.h dbfunctions.h
178 ln -s ../src/dbstuff.h dbstuff.h
179 ln -s ../src/exim.h exim.h
180 ln -s ../src/functions.h functions.h
181 ln -s ../src/globals.h globals.h
182 ln -s ../src/local_scan.h local_scan.h
183 ln -s ../src/macros.h macros.h
184 ln -s ../src/mytypes.h mytypes.h
185 ln -s ../src/osfunctions.h osfunctions.h
186 ln -s ../src/store.h store.h
187 ln -s ../src/structs.h structs.h
188
189 ln -s ../src/acl.c acl.c
190 ln -s ../src/buildconfig.c buildconfig.c
191 ln -s ../src/child.c child.c
192 ln -s ../src/crypt16.c crypt16.c
193 ln -s ../src/daemon.c daemon.c
194 ln -s ../src/dbfn.c dbfn.c
195 ln -s ../src/debug.c debug.c
196 ln -s ../src/deliver.c deliver.c
197 ln -s ../src/directory.c directory.c
198 ln -s ../src/dns.c dns.c
199 ln -s ../src/drtables.c drtables.c
200 ln -s ../src/dummies.c dummies.c
201 ln -s ../src/enq.c enq.c
202 ln -s ../src/exim.c exim.c
203 ln -s ../src/exim_dbmbuild.c exim_dbmbuild.c
204 ln -s ../src/exim_dbutil.c exim_dbutil.c
205 ln -s ../src/exim_lock.c exim_lock.c
206 ln -s ../src/expand.c expand.c
207 ln -s ../src/filter.c filter.c
208 ln -s ../src/filtertest.c filtertest.c
209 ln -s ../src/globals.c globals.c
210 ln -s ../src/header.c header.c
211 ln -s ../src/host.c host.c
212 ln -s ../src/ip.c ip.c
213 ln -s ../src/log.c log.c
214 ln -s ../src/lss.c lss.c
215 ln -s ../src/match.c match.c
216 ln -s ../src/moan.c moan.c
217 ln -s ../src/parse.c parse.c
218 ln -s ../src/perl.c perl.c
219 ln -s ../src/queue.c queue.c
220 ln -s ../src/rda.c rda.c
221 ln -s ../src/readconf.c readconf.c
222 ln -s ../src/receive.c receive.c
223 ln -s ../src/retry.c retry.c
224 ln -s ../src/rewrite.c rewrite.c
225 ln -s ../src/rfc2047.c rfc2047.c
226 ln -s ../src/route.c route.c
227 ln -s ../src/search.c search.c
228 ln -s ../src/sieve.c sieve.c
229 ln -s ../src/smtp_in.c smtp_in.c
230 ln -s ../src/smtp_out.c smtp_out.c
231 ln -s ../src/spool_in.c spool_in.c
232 ln -s ../src/spool_out.c spool_out.c
233 ln -s ../src/store.c store.c
234 ln -s ../src/string.c string.c
235 ln -s ../src/tls.c tls.c
236 ln -s ../src/tls-gnu.c tls-gnu.c
237 ln -s ../src/tls-openssl.c tls-openssl.c
238 ln -s ../src/tod.c tod.c
239 ln -s ../src/transport.c transport.c
240 ln -s ../src/tree.c tree.c
241 ln -s ../src/verify.c verify.c
242 ln -s ../src/version.c version.c
243
244 # WITH_CONTENT_SCAN
245 ln -s ../src/spam.c spam.c
246 ln -s ../src/spam.h spam.h
247 ln -s ../src/spool_mbox.c spool_mbox.c
248 ln -s ../src/regex.c regex.c
249 ln -s ../src/mime.c mime.c
250 ln -s ../src/mime.h mime.h
251 ln -s ../src/malware.c malware.c
252
253 # WITH_OLD_DEMIME
254 ln -s ../src/demime.c demime.c
255 ln -s ../src/demime.h demime.h
256
257 # EXPERIMENTAL_*
258 ln -s ../src/bmi_spam.c bmi_spam.c
259 ln -s ../src/bmi_spam.h bmi_spam.h
260 ln -s ../src/spf.c spf.c
261 ln -s ../src/spf.h spf.h
262 ln -s ../src/srs.c srs.c
263 ln -s ../src/srs.h srs.h
264
265 # End of MakeLinks