Conditionally build directories depending on protocols that may be disabled.
Showing
1 changed file
with
9 additions
and
1 deletions
... | @@ -5,10 +5,18 @@ | ... | @@ -5,10 +5,18 @@ |
5 | AUTOMAKE_OPTIONS = gnu 1.6 readme-alpha | 5 | AUTOMAKE_OPTIONS = gnu 1.6 readme-alpha |
6 | ACLOCAL_AMFLAGS = -I m4 | 6 | ACLOCAL_AMFLAGS = -I m4 |
7 | 7 | ||
8 | # directories depending on mh support | ||
9 | MH_DIRS = mh | ||
10 | MH_BUILD_DIRS = @MH_BUILD_DIRS@ | ||
11 | |||
12 | # directories depending on the smtp protocol | ||
13 | SMTP_DIRS = mail.remote | ||
14 | SMTP_BUILD_DIRS = @SMTP_BUILD_DIRS@ | ||
15 | |||
8 | SUBDIRS = include m4 lib testsuite mailbox examples doc \ | 16 | SUBDIRS = include m4 lib testsuite mailbox examples doc \ |
9 | auth frm from pop3d imap4d \ | 17 | auth frm from pop3d imap4d \ |
10 | mail sieve scripts libmu_scm guimb messages comsat readmsg \ | 18 | mail sieve scripts libmu_scm guimb messages comsat readmsg \ |
11 | mail.local mail.remote dotlock mh | 19 | mail.local $(SMTP_BUILD_DIRS) dotlock $(MH_DIRS) |
12 | 20 | ||
13 | EXTRA_DIST = mailutils.spec mailutils.spec.in COPYING.FDL | 21 | EXTRA_DIST = mailutils.spec mailutils.spec.in COPYING.FDL |
14 | 22 | ... | ... |
-
Please register or sign in to post a comment