Mercurial > masqmail
annotate src/Makefile.am @ 221:8742d2cee364
added a note to the long vs. int question in md5.h
Solar Designer explained to me in privat conversation that the
int had performed much better on some systems and that 16bit
ints are very rare. Still I like using the long.
author | meillo@marmaro.de |
---|---|
date | Fri, 23 Jul 2010 10:53:04 +0200 |
parents | 116b0269c934 |
children | 5781ba87df95 |
rev | line source |
---|---|
0 | 1 SUBDIRS=base64 md5 libident |
2 | |
3 AM_CFLAGS=@CFLAGS@ @GLIB_CFLAGS@ -D_GNU_SOURCE -DG_DISABLE_DEPRECATED | |
4 | |
5 sbin_PROGRAMS=masqmail | |
6 bin_PROGRAMS=mservdetect | |
200
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
7 noinst_PROGRAMS=smtpsend readtest resolvtest |
0 | 8 |
9 masqmail_SOURCES=\ | |
10 dotlock.h\ | |
11 masqmail.h\ | |
12 readsock.h\ | |
13 smtp_out.h\ | |
14 lookup.h\ | |
15 accept.c\ | |
16 address.c\ | |
17 alias.c\ | |
18 child.c\ | |
19 connect.c\ | |
20 conf.c\ | |
21 deliver.c\ | |
22 dotlock.c\ | |
23 expand.c\ | |
24 fail_msg.c\ | |
25 header.c\ | |
26 interface.c\ | |
27 local.c\ | |
28 log.c\ | |
29 listen.c\ | |
30 lookup.c\ | |
31 masqmail.c\ | |
32 message.c\ | |
33 online.c\ | |
34 parse.c\ | |
35 peopen.c\ | |
36 peopen.h\ | |
37 permissions.c\ | |
38 readsock.c\ | |
39 rewrite.c\ | |
40 route.c\ | |
41 queue.c\ | |
42 smtp_in.c\ | |
43 smtp_out.c\ | |
44 spool.c\ | |
45 tables.c\ | |
46 timeival.c | |
47 | |
48 smtpsend_SOURCES=\ | |
49 smtpsend.c\ | |
50 masqmail.h\ | |
51 readsock.h\ | |
52 smtp_out.h\ | |
53 lookup.h\ | |
54 accept.c\ | |
55 address.c\ | |
56 child.c\ | |
57 connect.c\ | |
58 header.c\ | |
59 interface.c\ | |
60 lookup.c\ | |
61 message.c\ | |
62 parse.c\ | |
63 peopen.c\ | |
64 readsock.c\ | |
65 smtp_out.c | |
66 | |
67 mservdetect_SOURCES=\ | |
68 masqmail.h\ | |
69 readsock.h\ | |
70 mservdetect.c\ | |
71 readsock.c\ | |
72 peopen.c | |
73 | |
74 readtest_SOURCES=\ | |
75 readsock.c\ | |
76 readsock.h\ | |
77 readtest.c | |
78 | |
200
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
79 resolvtest_SOURCES=\ |
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
80 resolvtest.c\ |
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
81 lookup.c |
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
82 |
0 | 83 masqmail_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @LOCKFILE_LIBS@ @MD5_LIBS@ @BASE64_LIBS@ @IDENT_LIBS@ |
84 smtpsend_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @MD5_LIBS@ @BASE64_LIBS@ | |
85 mservdetect_LDADD=@GLIB_LIBS@ | |
86 readtest_LDADD=@GLIB_LIBS@ | |
200
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
87 resolvtest_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @IDENT_LIBS@ |