summaryrefslogtreecommitdiffstats
path: root/man/Makefile.in
blob: f98402ca9a8844f32deb3ff3a301e28af364b022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
SHELL	= /bin/sh

# For now, just hard-coded rules for daemons, commands, config files.

DAEMONS	= man8/bounce.8 man8/defer.8 man8/cleanup.8 man8/error.8 man8/local.8 \
	man8/lmtp.8 man8/master.8 man8/pickup.8 man8/pipe.8 man8/qmgr.8 \
	man8/showq.8 man8/smtp.8 man8/smtpd.8 man8/trivial-rewrite.8 \
	man8/oqmgr.8 man8/spawn.8 man8/flush.8 man8/virtual.8 man8/qmqpd.8 \
	man8/verify.8 man8/trace.8 man8/proxymap.8 man8/anvil.8 \
	man8/scache.8 man8/discard.8 man8/tlsmgr.8 man8/postscreen.8 \
	man8/dnsblog.8 man8/tlsproxy.8 man8/postlogd.8
COMMANDS= man1/postalias.1 man1/postcat.1 man1/postconf.1 man1/postfix.1 \
	man1/postkick.1 man1/postlock.1 man1/postlog.1 man1/postdrop.1 \
	man1/postmap.1 man1/postmulti.1 man1/postqueue.1 man1/postsuper.1 \
	man1/sendmail.1 man1/mailq.1 man1/newaliases.1 man1/postfix-tls.1
CONFIG	= man5/access.5 man5/aliases.5 man5/canonical.5 man5/relocated.5 \
	man5/transport.5 man5/virtual.5 man5/pcre_table.5 man5/regexp_table.5 \
	man5/cidr_table.5 man5/tcp_table.5 man5/header_checks.5 \
	man5/body_checks.5 man5/ldap_table.5 man5/lmdb_table.5 \
	man5/memcache_table.5 man5/mysql_table.5 \
	man5/pgsql_table.5 man5/master.5 man5/nisplus_table.5 \
	man5/generic.5 man5/bounce.5 man5/postfix-wrapper.5 \
	man5/sqlite_table.5 man5/socketmap_table.5
TOOLS	= man1/smtp-sink.1 man1/smtp-source.1 man1/qmqp-sink.1 \
	man1/qmqp-source.1 man1/qshape.1 man1/posttls-finger.1 \
	man1/makedefs.1

update:	$(DAEMONS) $(COMMANDS) $(CONFIG) $(TOOLS)

clean:
	rm -f cat?/*

tidy:	clean

clobber:
	rm -f $(DAEMONS) $(COMMANDS) $(CONFIG)

man8/bounce.8: ../src/bounce/bounce.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/defer.8:
	echo .so man8/bounce.8 >$@

man8/cleanup.8: ../src/cleanup/cleanup.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/anvil.8: ../src/anvil/anvil.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/scache.8: ../src/scache/scache.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/discard.8: ../src/discard/discard.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/dnsblog.8: ../src/dnsblog/dnsblog.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/error.8: ../src/error/error.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/flush.8: ../src/flush/flush.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/local.8: ../src/local/local.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/lmtp.8:
	echo .so man8/smtp.8 >$@

man8/master.8: ../src/master/master.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/oqmgr.8: ../src/oqmgr/qmgr.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? | \
		sed -e 's/qmgr[^_]/o&/' \
		    -e 's/qmgr$$/o&/' \
		    -e 's/QMGR[^_]/O&/' >$@

man8/pickup.8: ../src/pickup/pickup.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/pipe.8: ../src/pipe/pipe.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/postlogd.8: ../src/postlogd/postlogd.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/postscreen.8: ../src/postscreen/postscreen.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/proxymap.8: ../src/proxymap/proxymap.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/qmgr.8: ../src/qmgr/qmgr.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/qmqpd.8: ../src/qmqpd/qmqpd.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/showq.8: ../src/showq/showq.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/spawn.8: ../src/spawn/spawn.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/smtp.8: ../src/smtp/smtp.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/smtpd.8: ../src/smtpd/smtpd.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/tlsproxy.8: ../src/tlsproxy/tlsproxy.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/virtual.8: ../src/virtual/virtual.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/verify.8: ../src/verify/verify.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/trace.8:
	echo .so man8/bounce.8 >$@

man8/tlsmgr.8: ../src/tlsmgr/tlsmgr.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man8/trivial-rewrite.8: ../src/trivial-rewrite/trivial-rewrite.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postalias.1: ../src/postalias/postalias.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postcat.1: ../src/postcat/postcat.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postconf.1: ../src/postconf/postconf.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postdrop.1: ../src/postdrop/postdrop.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postfix.1: ../src/postfix/postfix.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postfix-tls.1: ../conf/postfix-tls-script
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man1/postkick.1: ../src/postkick/postkick.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postlock.1: ../src/postlock/postlock.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postlog.1: ../src/postlog/postlog.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postmap.1: ../src/postmap/postmap.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postmulti.1: ../src/postmulti/postmulti.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postqueue.1: ../src/postqueue/postqueue.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/postsuper.1: ../src/postsuper/postsuper.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/sendmail.1: ../src/sendmail/sendmail.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/mailq.1:
	echo .so man1/sendmail.1 >$@

man1/newaliases.1:
	echo .so man1/sendmail.1 >$@

man5/access.5: ../proto/access
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/aliases.5: ../proto/aliases
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/bounce.5: ../proto/bounce
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/canonical.5: ../proto/canonical
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/cidr_table.5: ../proto/cidr_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/generic.5: ../proto/generic
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/header_checks.5: ../proto/header_checks
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/body_checks.5: ../proto/header_checks
	echo .so man5/header_checks.5 >$@

man5/ldap_table.5: ../proto/ldap_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/lmdb_table.5: ../proto/lmdb_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/master.5: ../proto/master
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/memcache_table.5: ../proto/memcache_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/mysql_table.5: ../proto/mysql_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/socketmap_table.5: ../proto/socketmap_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/sqlite_table.5: ../proto/sqlite_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/nisplus_table.5: ../proto/nisplus_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/pcre_table.5: ../proto/pcre_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/pgsql_table.5: ../proto/pgsql_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/regexp_table.5: ../proto/regexp_table
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/relocated.5: ../proto/relocated
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/transport.5: ../proto/transport
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/virtual.5: ../proto/virtual
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man5/postfix-wrapper.5: ../proto/postfix-wrapper
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@

man1/smtp-sink.1: ../src/smtpstone/smtp-sink.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/smtp-source.1: ../src/smtpstone/smtp-source.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/posttls-finger.1: ../src/posttls-finger/posttls-finger.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/makedefs.1: ../makedefs
	../mantools/srctoman - $? >$@

man5/tcp_table.5: ../proto/tcp_table
	../mantools/srctoman - $? >$@

man1/qmqp-sink.1: ../src/smtpstone/qmqp-sink.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/qmqp-source.1: ../src/smtpstone/qmqp-source.c
	../mantools/fixman ../proto/postconf.proto $? >junk && \
	    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman $? >$@

man1/qshape.1: ../auxiliary/qshape/qshape.pl
	#../mantools/fixman ../proto/postconf.proto $? >junk && \
	#    (cmp -s junk $? || mv junk $?) && rm -f junk
	../mantools/srctoman - $? >$@