]> Pileus Git - ~andy/fetchmail/blob - Makefile.am
Add rsync target to help with testing fetchmail compiles.
[~andy/fetchmail] / Makefile.am
1 # Makefile for fetchmail
2
3 SUBDIRS=                m4 po
4 AUTOMAKE_OPTIONS=       1.8 foreign no-dist-gzip dist-bzip2
5
6 AM_CFLAGS=              @CEFLAGS@
7 AM_CPPFLAGS=            @CPFLAGS@ -I$(srcdir)/libesmtp
8 AM_LDFLAGS=             @LDEFLAGS@
9 ACLOCAL_AMFLAGS=        -I m4 -I m4-local
10 AM_YFLAGS=              -d
11 BUILT_SOURCES=          rcfile_y.h
12
13 bin_PROGRAMS=           fetchmail
14
15 dist_noinst_SCRIPTS=    specgen.sh
16 dist_man1_MANS=         fetchmail.man
17
18 pys=                    fetchmailconf.py
19 pym=                    fetchmailconf.man
20
21 if HAVE_PYTHON
22 nodist_bin_SCRIPTS=     fetchmailconf
23 python_PYTHON=          $(pys)
24 dist_man1_MANS+=        $(pym)
25 EXTRA_DIST=
26 else
27 noinst_PYTHON=          $(pys)
28 EXTRA_DIST=             $(pym)
29 endif
30
31 CLEANFILES=             $(nodist_bin_SCRIPTS)
32
33 # for gettext (used by fetchmail.c, NOT by GNU gettext)
34 localedir=              $(datadir)/locale
35 DEFS=                   @DEFS@ -DLOCALEDIR=\"$(localedir)\"
36
37 noinst_LIBRARIES=       libfm.a
38 libfm_a_SOURCES=        xmalloc.c base64.c rfc822.c report.c rfc2047e.c \
39                         servport.c ntlm.h smbbyteorder.h smbdes.h smbmd4.h \
40                         smbencrypt.h smbdes.c smbencrypt.c smbmd4.c smbutil.c \
41                         libesmtp/gethostbyname.h libesmtp/gethostbyname.c \
42                         smbtypes.h
43 libfm_a_LIBADD=         $(EXTRAOBJ)
44 libfm_a_DEPENDENCIES=   $(EXTRAOBJ)
45 LDADD   =               libfm.a @LIBINTL@ $(LIBOBJS)
46 DEPENDENCIES=           libfm.a $(LIBOBJS)
47
48 check_PROGRAMS=
49
50 TESTS=                  t.smoke
51 TESTS_ENVIRONMENT=      srcdir="@srcdir@" LC_ALL=C TZ=UTC
52
53 if NEED_TRIO
54 noinst_LIBRARIES+=      libtrio.a
55 libtrio_a_SOURCES=      trio/triostr.c trio/trio.c trio/trionan.c \
56                         trio/trio.h trio/triop.h trio/triodef.h \
57                         trio/trionan.h trio/triostr.h
58 check_PROGRAMS+=        regression
59 regression_SOURCES=     trio/regression.c
60 LDADD +=                libtrio.a -lm
61 TESTS+=                 regression
62 endif
63
64 fetchmail_SOURCES=      fetchmail.h getopt.h \
65                 i18n.h kerberos.h md5.h mx.h netrc.h smtp.h \
66                 socket.h tunable.h \
67                 socket.c getpass.c pop2.c pop3.c imap.c etrn.c \
68                 odmr.c fetchmail.c env.c idle.c options.c daemon.c \
69                 driver.c transact.c sink.c smtp.c \
70                 uid.c mxget.c md5ify.c cram.c kerberos.c gssapi.c \
71                 opie.c rpa.c interface.c netrc.c \
72                 unmime.c conf.c checkalias.c lock.c \
73                 rcfile_l.l rcfile_y.y ucs/norm_charmap.c \
74                 libesmtp/getaddrinfo.h libesmtp/getaddrinfo.c \
75                 KAME/getnameinfo.c
76
77 check_PROGRAMS +=       rfc822 unmime netrc rfc2047e mxget
78
79 rfc2047e_CFLAGS=        -DTEST
80
81 rfc822_CFLAGS=  -DMAIN
82
83 unmime_SOURCES= unmime.c
84 unmime_CFLAGS=  -DSTANDALONE -DHAVE_CONFIG_H -I$(builddir)
85
86 netrc_SOURCES=  netrc.c xmalloc.c report.c
87 netrc_CFLAGS=   -DSTANDALONE -DHAVE_CONFIG_H -I$(builddir)
88
89 mxget_SOURCES=  mxget.c
90 mxget_CFLAGS=   -DSTANDALONE -DHAVE_CONFIG_H -I$(builddir)
91
92 # For some losing Unix makes.
93 SHELL = /bin/sh
94 @SET_MAKE@
95
96 fetchmail.spec: Makefile.in specgen.sh
97         $(srcdir)/specgen.sh $(VERSION) >fetchmail.spec
98
99 DISTDOCS=       FAQ FEATURES NOTES OLDNEWS fetchmail-man.html \
100                 design-notes.html esrs-design-notes.html todo.html \
101                 fetchmail-features.html README.SSL README.NTLM \
102                 README.packaging \
103                 fetchmail-FAQ.book fetchmail-FAQ.pdf fetchmail-FAQ.html \
104                 fetchmail-SA-2006-01.txt \
105                 fetchmail-SA-2005-01.txt \
106                 fetchmail-SA-2005-02.txt \
107                 fetchmail-SA-2005-03.txt
108
109 # extra directories to ship
110 distdirs = rh-config contrib beos
111
112 EXTRA_DIST+=    $(DISTDOCS) fetchmail.spec $(distdirs) ucs/README.svn \
113                 trio/CHANGES trio/README \
114                 strlcpy.3 bighand.png \
115                 m4-local/ac-archive-license.txt \
116                 m4-local/ac_ma_search_package.m4 \
117                 m4-local/autobuild.m4 \
118                 t.smoke t.rc \
119                 dist-tools/html2txt \
120                 dist-tools/manServer.pl
121
122 fetchmailconf:
123         ( echo '#! /bin/sh' && echo 'exec @PYTHON@ @pythondir@/fetchmailconf.py "$$@"' ) >$@ || { rm -f $@ ; exit 1; }
124
125 FAQ: fetchmail-FAQ.html $(srcdir)/dist-tools/html2txt
126         AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-FAQ.html >$@ || { rm -f $@ ; exit 1 ; }
127
128 fetchmail-FAQ.pdf: fetchmail-FAQ.html fetchmail-FAQ.book bighand.png
129         $(AWK) '/^[ \t]*<h1/ {sec++; } {if (sec < 2 || sec > 3) print $0;}' <$(srcdir)/fetchmail-FAQ.html >fetchmail-FAQ-print.html
130         htmldoc --logoimage $(srcdir)/bighand.png --batch $(srcdir)/fetchmail-FAQ.book
131         rm -f fetchmail-FAQ-print.html
132
133 FEATURES: fetchmail-features.html $(srcdir)/dist-tools/html2txt
134         AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-features.html >$@ || { rm -f $@ ; exit 1 ; }
135
136 NOTES: design-notes.html esrs-design-notes.html $(srcdir)/dist-tools/html2txt
137            echo "This file contains two articles reformatted from HTML." > $@ \
138         && echo "------------------------------------------------------" >> $@ \
139         && echo "" >> $@ \
140         && AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/design-notes.html >>$@ \
141         && AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/esrs-design-notes.html >>$@ \
142         || { rm -f $@ ; exit 1 ; }
143
144 TODO: todo.html $(srcdir)/dist-tools/html2txt
145         AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/todo.html >$@ || { rm -f $@ ; exit 1 ; }
146
147 fetchmail-man.html: fetchmail.man $(srcdir)/dist-tools/manServer.pl
148         env - PATH=$$PATH $(srcdir)/dist-tools/manServer.pl $(srcdir)/fetchmail.man >$@ \
149         || { rm -f $@ ; exit 1 ; }
150
151 dist-hook:
152         cd $(distdir) && find $(distdirs) po -name .svn -type d -prune -exec rm -rf '{}' ';'
153         cd $(distdir) && find $(distdirs) po -name '*~' -exec rm -f '{}' ';'
154
155 .PHONY: lsm
156 lsm: genlsm.sh dist
157         $(SHELL) genlsm.sh >$(PACKAGE)-$(VERSION).lsm
158
159 # this target expects a .rsyncs file with lines of this format:
160 # host:directory/
161 # it will call rsync from its source directory to the destination for
162 # each of them, running them in parallel
163 rsync:  distdir $(srcdir)/.rsyncs
164         @( cat $(srcdir)/.rsyncs | sed -e 's}^}rsync -aH --delete-after $(PACKAGE)-$(VERSION)/ }; s/\($$\)/ \&/;' ; echo "wait" ) | $(SHELL) -x
165
166 # The following sets edit modes for GNU EMACS.
167 # Local Variables:
168 # compile-command:"configure"
169 # End: