]> Pileus Git - ~andy/fetchmail/blob - Makefile.am
Fix typo repsonsible -> responsible.
[~andy/fetchmail] / Makefile.am
1 # Makefile for fetchmail
2
3 SUBDIRS=                . po
4 AUTOMAKE_OPTIONS=       1.11 foreign no-dist-gzip dist-xz color-tests
5
6 AM_CPPFLAGS=            -I$(srcdir)/libesmtp
7 ACLOCAL_AMFLAGS=        -I m4 -I m4-local
8 AM_YFLAGS=              -d
9 BUILT_SOURCES=          rcfile_y.h
10
11 bin_PROGRAMS=           fetchmail
12
13 dist_noinst_SCRIPTS=    specgen.sh
14 dist_man1_MANS=         fetchmail.man
15
16 pys=                    fetchmailconf.py
17 pym=                    fetchmailconf.man
18
19 if HAVE_LIBPWMD
20 CFLAGS += @libpwmd_CFLAGS@
21 LDFLAGS += @libpwmd_LIBS@
22 endif
23
24 nodist_bin_SCRIPTS=     fetchmailconf
25 python_PYTHON=          $(pys)
26 dist_man1_MANS+=        $(pym)
27
28 CLEANFILES=             $(nodist_bin_SCRIPTS)
29
30 # for gettext (used by fetchmail.c, NOT by GNU gettext)
31 localedir=              $(datadir)/locale
32 DEFS=                   @DEFS@ -DLOCALEDIR=\"$(localedir)\"
33
34 noinst_LIBRARIES=       libfm.a
35 libfm_a_SOURCES=        xmalloc.c base64.c rfc822.c report.c rfc2047e.c \
36                         servport.c ntlm.h smbbyteorder.h smbdes.h smbmd4.h \
37                         smbencrypt.h smbdes.c smbencrypt.c smbmd4.c smbutil.c \
38                         libesmtp/gethostbyname.h libesmtp/gethostbyname.c \
39                         smbtypes.h fm_getaddrinfo.c tls.c rfc822valid.c \
40                         xmalloc.h sdump.h sdump.c x509_name_match.c \
41                         fm_strl.h md5c.c
42 if NTLM_ENABLE
43 libfm_a_SOURCES += ntlmsubr.c
44 endif
45 libfm_a_LIBADD=         $(EXTRAOBJ)
46 libfm_a_DEPENDENCIES=   $(EXTRAOBJ)
47 LDADD   =               libfm.a @LIBINTL@ $(LIBOBJS)
48 DEPENDENCIES=           libfm.a $(LIBOBJS)
49
50 check_PROGRAMS=
51
52 TESTS=                  t.smoke t.validate-xhtml10 t.validate-xhtml t.x509_name_match
53 TESTS_ENVIRONMENT=      srcdir="$(srcdir)" LC_ALL=C TZ=UTC SHELL="$(SHELL)" $(SHELL)
54
55 fetchmail_SOURCES=      fetchmail.h getopt.h \
56                 gettext.h kerberos.h fm_md5.h netrc.h smtp.h \
57                 socket.h tunable.h \
58                 socket.c getpass.c \
59                 fetchmail.c env.c idle.c options.c daemon.c \
60                 driver.c transact.c sink.c smtp.c \
61                 idlist.c uid.c md5ify.c cram.c gssapi.c \
62                 opie.c interface.c netrc.c \
63                 unmime.c conf.c checkalias.c uid_db.h uid_db.c\
64                 lock.h lock.c \
65                 rcfile_l.l rcfile_y.y \
66                 ucs/norm_charmap.c ucs/norm_charmap.h
67 if POP3_ENABLE
68 fetchmail_SOURCES += pop3.c
69 endif
70 if IMAP_ENABLE
71 fetchmail_SOURCES += imap.c
72 endif
73 if ETRN_ENABLE
74 fetchmail_SOURCES += etrn.c
75 endif
76 if ODMR_ENABLE
77 fetchmail_SOURCES += odmr.c
78 endif
79 if RPA_ENABLE
80 fetchmail_SOURCES += rpa.c
81 endif
82 if NEED_GETNAMEINFO
83 fetchmail_SOURCES += KAME/getnameinfo.c
84 endif
85 if NEED_GETADDRINFO
86 fetchmail_SOURCES += libesmtp/getaddrinfo.h libesmtp/getaddrinfo.c
87 endif
88
89 check_PROGRAMS +=       rfc822 unmime netrc rfc2047e rfc822valid \
90                         x509_name_match
91
92 rfc2047e_CFLAGS=        -DTEST
93
94 rfc822valid_CFLAGS=     -DTEST
95
96 rfc822_CFLAGS=          -DMAIN
97
98 x509_name_match_CFLAGS= -DTEST
99
100 unmime_SOURCES= unmime.c
101 unmime_CFLAGS=  -DSTANDALONE -DHAVE_CONFIG_H -I$(builddir)
102
103 netrc_SOURCES=  netrc.c xmalloc.c report.c
104 netrc_CFLAGS=   -DSTANDALONE -DHAVE_CONFIG_H -I$(builddir)
105
106 @SET_MAKE@
107
108 fetchmail.spec: Makefile.in specgen.sh
109         $(srcdir)/specgen.sh $(VERSION) >fetchmail.spec
110
111 DISTDOCS=       FAQ FEATURES NOTES OLDNEWS fetchmail-man.html \
112                 design-notes.html esrs-design-notes.html todo.html \
113                 fetchmail-features.html README.SSL README.NTLM \
114                 README.packaging README.SSL-SERVER \
115                 fetchmail-FAQ.book fetchmail-FAQ.pdf fetchmail-FAQ.html \
116                 Mailbox-Names-UTF7.txt Mailbox-Names-UTF7.html \
117                 fetchmail-SA-2012-02.txt \
118                 fetchmail-SA-2012-01.txt \
119                 fetchmail-SA-2011-01.txt \
120                 fetchmail-EN-2010-03.txt \
121                 fetchmail-SA-2010-02.txt \
122                 fetchmail-SA-2010-01.txt \
123                 fetchmail-SA-2009-01.txt \
124                 fetchmail-SA-2008-01.txt \
125                 fetchmail-SA-2007-02.txt \
126                 fetchmail-SA-2007-01.txt \
127                 fetchmail-SA-2006-03.txt \
128                 fetchmail-SA-2006-02.txt \
129                 fetchmail-SA-2006-01.txt \
130                 fetchmail-SA-2005-01.txt \
131                 fetchmail-SA-2005-02.txt \
132                 fetchmail-SA-2005-03.txt
133
134 # extra directories to ship
135 distdirs = rh-config contrib beos
136
137 EXTRA_DIST=     $(DISTDOCS) $(distdirs) \
138                 fetchmail.spec fetchmail.xpm \
139                 strlcpy.3 bighand.png \
140                 m4/codeset.m4 \
141                 m4/gettext.m4 \
142                 m4/glibc2.m4 \
143                 m4/glibc21.m4 \
144                 m4/iconv.m4 \
145                 m4/intdiv0.m4 \
146                 m4/intl.m4 \
147                 m4/intldir.m4 \
148                 m4/intlmacosx.m4 \
149                 m4/intmax.m4 \
150                 m4/inttypes-pri.m4 \
151                 m4/inttypes_h.m4 \
152                 m4/lcmessage.m4 \
153                 m4/lib-ld.m4 \
154                 m4/lib-link.m4 \
155                 m4/lib-prefix.m4 \
156                 m4/lock.m4 \
157                 m4/longlong.m4 \
158                 m4/nls.m4 \
159                 m4/po.m4 \
160                 m4/printf-posix.m4 \
161                 m4/progtest.m4 \
162                 m4/size_max.m4 \
163                 m4/stdint_h.m4 \
164                 m4/uintmax_t.m4 \
165                 m4/visibility.m4 \
166                 m4/wchar_t.m4 \
167                 m4/wint_t.m4 \
168                 m4/xsize.m4 \
169                 m4-local/ac-archive-license.txt \
170                 m4-local/ac_ma_search_package.m4 \
171                 $(TESTS) t.rc t.regression \
172                 dist-tools/html2txt \
173                 dist-tools/manServer.pl \
174                 Doxyfile
175
176 fetchmailconf:
177         ( echo '#! /bin/sh' && echo 'exec @PYTHON@ @pythondir@/fetchmailconf.py "$$@"' ) >$@ && chmod +x $@ || { rm -f $@ ; exit 1; }
178
179 FAQ: fetchmail-FAQ.html $(srcdir)/dist-tools/html2txt
180         AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-FAQ.html >$@ || { rm -f $@ ; exit 1 ; }
181
182 fetchmail-FAQ.pdf: fetchmail-FAQ.html fetchmail-FAQ.book bighand.png
183         $(AWK) '/^[ \t]*<h1/ {sec++; } {if (sec < 2 || sec > 3) print $0;}' <$(srcdir)/fetchmail-FAQ.html >fetchmail-FAQ-print.html
184         htmldoc --logoimage $(srcdir)/bighand.png --batch $(srcdir)/fetchmail-FAQ.book || { rm -f $@ ; exit 1 ; }
185         rm -f fetchmail-FAQ-print.html
186
187 FEATURES: fetchmail-features.html $(srcdir)/dist-tools/html2txt
188         AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-features.html >$@ || { rm -f $@ ; exit 1 ; }
189
190 NOTES: design-notes.html esrs-design-notes.html $(srcdir)/dist-tools/html2txt
191            echo "This file contains two articles reformatted from HTML." > $@ \
192         && echo "------------------------------------------------------" >> $@ \
193         && echo "" >> $@ \
194         && AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/design-notes.html >>$@ \
195         && AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/esrs-design-notes.html >>$@ \
196         || { rm -f $@ ; exit 1 ; }
197
198 TODO: todo.html $(srcdir)/dist-tools/html2txt
199         AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/todo.html >$@ || { rm -f $@ ; exit 1 ; }
200
201 fetchmail-man.html: fetchmail.man $(srcdir)/dist-tools/manServer.pl
202         env - "PATH=$$PATH" perl -T $(srcdir)/dist-tools/manServer.pl $(srcdir)/fetchmail.man >$@ \
203         || { rm -f $@ ; exit 1 ; }
204
205 dist-hook:
206         cd $(distdir) && find $(distdirs) po -name .git -type d -prune -exec rm -rf '{}' ';'
207         cd $(distdir) && find $(distdirs) po -name '*~' -exec rm -f '{}' ';'
208
209 .PHONY: lsm
210 lsm: genlsm.sh dist
211         $(SHELL) genlsm.sh >$(PACKAGE)-$(VERSION).lsm
212
213 # this target expects a .rsyncs file with lines of this format:
214 # host:directory/
215 # it will call rsync from its source directory to the destination for
216 # each of them, running them in parallel
217 rsync:  distdir $(srcdir)/.rsyncs
218         @( cat $(srcdir)/.rsyncs | sed -e 's}^}rsync -aH --delete-after $(PACKAGE)-$(VERSION)/ }; s/\($$\)/ \&/;' ; echo "wait" ) | $(SHELL) -x
219
220 .PHONY: import-translations
221 import-translations:
222         rsync -Lrtvz translationproject.org::tp/latest/fetchmail/  $(top_srcdir)/po
223         cd $(top_builddir)/po && $(MAKE) update-po
224
225 SUFFIXES = .html .txt
226 .txt.html:
227         asciidoc --unsafe -a toc -a data-uri -o $@ $< || { rm -f $@ ; exit 1 ; }
228
229 # The following sets edit modes for GNU EMACS.
230 # Local Variables:
231 # compile-command:"configure"
232 # End: