]> Pileus Git - ~andy/fetchmail/blob - Makefile.in
Add exim 501 response.
[~andy/fetchmail] / Makefile.in
1 # Makefile for fetchmail
2
3 # If you're running QNX, we can't assume a working autoconf.
4 # So just uncomment all the lines marked QNX.
5
6 VERS=3.9.6
7
8 # Ultrix 2.2 make doesn't expand the value of VPATH.
9 srcdir = @srcdir@
10 VPATH = @srcdir@
11
12 CC = @CC@
13 # CC = cc               # QNX
14
15 CFLAGS = @CFLAGS@
16 # CFLAGS =  -g2 -5      # QNX
17 LDFLAGS = @LDFLAGS@
18 # LDLAGS =  -g2 -5      # QNX
19 LEX = @LEX@
20 LEXFLAGS=
21 YACC = @YACC@
22 # YACC = yacc
23 YACCFLAGS = -dt
24
25 # How to invoke ranlib.  This is only used by the `glob' subdirectory.
26 RANLIB = @RANLIB@
27
28 # NeXT 1.0a uses an old version of GCC, which required -D__inline=inline.
29 # See also `config.h'.
30 DEFS = @DEFS@
31 # DEFS = -DQNX -DHAVE_CONFIG_H -DHAVE_UNISTD_H -DHAVE_STDARG_H -DSTDC_HEADERS   # QNX
32 defines =  -DRELEASE_ID=\"$(VERS)\" $(DEFS)
33
34 # If your system needs extra libraries loaded in, define them here.
35 LOADLIBS = @LIBS@ @LEXLIB@
36 # LOADLIBS = -lsocket3r -lunix3r        # QNX
37
38 # Any extra object files your system needs.
39 extras = @LIBOBJS@
40
41 # Extra sources/objects for library functions not provided on the host system.
42 EXTRASRC = @EXTRASRC@
43 # EXTRASRC = $(srcdir)/strcasecmp.c $(srcdir)/getopt.c $(srcdir)/getopt1.c $(srcdir)/alloca.c   # QNX
44 EXTRAOBJ = @EXTRAOBJ@
45 # EXTRAOBJ = strcasecmp.o getopt.o getopt1.o alloca.o
46
47 # Common prefix for machine-independent installed files.
48 prefix = @prefix@
49 # Common prefix for machine-dependent installed files.
50 exec_prefix = @exec_prefix@
51
52 # Name under which to install fetchmail
53 instname = fetchmail
54 # Directory in which to install.
55 bindir = @bindir@
56 # Directory to install the Info files in.
57 infodir = @infodir@
58 # Number to put on the man page filename.
59 manext = 1
60 # Directory to install the man page in.
61 mandir = @mandir@/man$(manext)
62
63 # Program to install `make'.
64 INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s
65 # Program to install the man page.
66 INSTALL_DATA = @INSTALL_DATA@
67 # Generic install program.
68 INSTALL = @INSTALL@
69
70 # Program to format Texinfo source into Info files.
71 MAKEINFO = makeinfo
72 # Program to format Texinfo source into DVI files.
73 TEXI2DVI = texi2dvi
74
75 # Programs to make tags files.
76 ETAGS = etags -tw
77 CTAGS = ctags -tw
78
79 protobjs = rcfile_y.o rcfile_l.o socket.o getpass.o pop2.o pop3.o imap.o \
80        etrn.o fetchmail.o options.o daemon.o smtp.o driver.o rfc822.o \
81        xmalloc.o uid.o mxget.o md5c.o md5ify.o interface.o netrc.o base64.o \
82        error.o
83
84 objs = $(protobjs) $(extras) $(EXTRAOBJ)
85
86 srcs = $(srcdir)/socket.c $(srcdir)/getpass.c $(srcdir)/pop2.c          \
87        $(srcdir)/pop3.c $(srcdir)/imap.c $(srcdir)/etrn.c               \
88        $(srcdir)/fetchmail.c $(srcdir)/options.c $(srcdir)/daemon.c     \
89        $(srcdir)/driver.c $(srcdir)/rfc822.c $(srcdir)/smtp.c           \
90        $(srcdir)/xmalloc.c $(srcdir)/uid.c $(srcdir)/mxget.c            \
91        $(srcdir)/md5c.c $(srcdir)/md5ify.c $(srcdir)/interface.c        \
92        $(srcdir)/netrc.c $(srcdir)/base64.c $(srcdir)/error.c
93
94 .SUFFIXES:
95 .SUFFIXES: .o .c .h .y .l .ps .dvi .info .texi
96
97 all: fetchmail
98
99 # Some makes apparently use .PHONY as the default goal if it is before `all'.
100 .PHONY: all check
101
102 fetchmail: $(objs)
103         $(CC) $(LDFLAGS) $(objs) $(LOADLIBS) -o fetchmail
104
105 # Tester for address parsing
106 rfc822: rfc822.c
107         gcc -DTESTMAIN -g rfc822.c -o rfc822
108
109 # -I. is needed to find config.h in the build directory.
110 .c.o:
111         $(CC) $(defines) -c -I. -I$(srcdir) $(CFLAGS) $< $(OUTPUT_OPTION)
112
113 # lex rule
114 .l.o:
115         $(LEX) $(LEXFLAGS) $<
116         mv lex.yy.c $*.c
117         $(CC) $(defines) -c -I. -I$(srcdir) $(CFLAGS) $*.c $(OUTPUT_OPTION)
118
119 .l.c:
120         $(LEX) $(LEXFLAGS) $<
121         mv lex.yy.c $*.c
122
123 # yacc rule
124 .y.o:
125         $(YACC) $(YACCFLAGS) $<
126         mv y.tab.c $*.c
127         mv -f y.tab.h $*.h
128         $(CC) $(defines) -c -I. -I$(srcdir) $(CFLAGS) $*.c $(OUTPUT_OPTION)
129
130 .y.c:
131         $(YACC) $(YACCFLAGS) $<
132         mv y.tab.c $*.c
133         mv -f y.tab.h $*.h
134
135 # For some losing Unix makes.
136 SHELL = /bin/sh
137 MAKE = make
138
139 FORCE:
140
141 tagsrcs = $(srcs) $(srcdir)/rcfile_l.c $(srcdir)/rcfile_y.c
142 TAGS: $(tagsrcs)
143         $(ETAGS) $(tagsrcs)
144 tags: $(tagsrcs)
145         $(CTAGS) $(tagsrcs)
146
147 .PHONY: install installdirs
148 install: installdirs $(bindir)/$(instname) $(mandir)/$(instname).$(manext)
149
150 installdirs:
151         $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(mandir)
152
153 $(bindir)/$(instname): fetchmail
154         $(INSTALL_PROGRAM) fetchmail $@
155
156 $(mandir)/$(instname).$(manext): fetchmail.man
157         $(INSTALL_DATA) $(srcdir)/fetchmail.man $@
158
159 .PHONY: clean realclean distclean mostlyclean
160 clean: 
161         -rm -f fetchmail *.o core fetchmail.dvi \
162                rcfile_l.c rcfile_y.h rcfile_y.c \
163                fetchmail.tar fetchmail.tar.gz \
164                rfc822 FAQ
165
166 distclean: clean 
167         -rm -f Makefile config.h TAGS tags
168         -rm -f config.cache config.status config.log stamp-config
169         -rm -f fetchmail.log fetchmail.toc fetchmail.*aux
170
171 realclean: distclean # fetchmail.info*
172
173 mostlyclean: clean
174
175 Makefile: config.status $(srcdir)/Makefile.in
176         $(SHELL) config.status
177         @echo "You can ignore any makedepend error messages"
178         -makedepend -I. -fMakefile *.c
179
180 config.h: stamp-config 
181
182 stamp-config: config.status $(srcdir)/config.h.in
183         $(SHELL) config.status
184         touch stamp-config
185
186 configure: configure.in
187         autoconf $(ACFLAGS)
188
189 config.h.in: acconfig.h configure.in
190         autoheader $(ACFLAGS); touch config.h.in
191
192 # This tells versions [3.59,3.63) of GNU make not to export all variables.
193 .NOEXPORT:
194
195 # Special dependencies, not easily handled without explicit rules
196 $(srcdir)/rcfile_l.c $(srcdir)/rcfile_l.h: $(srcdir)/rcfile_l.l
197 $(srcdir)/rcfile_y.c $(srcdir)/rcfile_y.h: $(srcdir)/rcfile_y.y
198
199 parser = $(srcdir)/rcfile_l.l $(srcdir)/rcfile_y.y
200 headers = $(srcdir)/fetchmail.h $(srcdir)/socket.h $(srcdir)/smtp.h \
201         $(srcdir)/mx.h $(srcdir)/md5.h $(srcdir)/md5global.h \
202         $(srcdir)/netrc.h $(srcdir)/tunable.h
203 extra = $(srcdir)/alloca.c $(srcdir)/getopt.[ch] $(srcdir)/getopt1.c \
204         $(srcdir)/strcasecmp.c
205 docs = $(srcdir)/COPYING $(srcdir)/README $(srcdir)/INSTALL $(srcdir)/NEWS \
206         $(srcdir)/NOTES $(srcdir)/fetchmail.lsm $(srcdir)/sample.rcfile \
207         $(srcdir)/*.man $(srcdir)/FAQ $(srcdir)/fetchmail.FAQ.html
208 config = $(srcdir)/Makefile.in $(srcdir)/configure.in $(srcdir)/configure \
209         $(srcdir)/config.guess $(srcdir)/config.h.in $(srcdir)/config.sub \
210         $(srcdir)/acconfig.h
211 scripts = $(srcdir)/install.sh $(srcdir)/mkinstalldirs \
212         $(srcdir)/specgen.sh $(srcdir)/lsmgen.sh
213 all = $(docs) $(config) $(srcs) $(parser) $(headers) $(extra) $(scripts) \
214         $(srcdir)/contrib/* $(srcdir)/MANIFEST
215
216 MANIFEST: $(srcdir) Makefile.in
217         @echo $(all) | tr "[ \t]" '\n' | sort | sed "s/\\./fetchmail-$(VERS)/" >MANIFEST
218
219 FAQ: fetchmail.FAQ.html
220         lynx -dump -nolist fetchmail.FAQ.html >FAQ
221
222 # Make distribution, update LSM with proper size, remake distribution
223 dist: Makefile.in  
224         make fetchmail-$(VERS).tar.gz 
225         lsmgen.sh $(VERS) `wc -c fetchmail-$(VERS).tar.gz` >fetchmail.lsm
226         make fetchmail-$(VERS).tar.gz
227         ls -l fetchmail-$(VERS).tar.gz
228
229 fetchmail-$(VERS).tar: $(all)
230         (cd ..; tar -cf fetchmail-$(VERS).tar `cat fetchmail-$(VERS)/MANIFEST`)
231         mv ../fetchmail-$(VERS).tar fetchmail-$(VERS).tar
232 fetchmail-$(VERS).tar.gz: fetchmail-$(VERS).tar
233         gzip -f fetchmail-$(VERS).tar
234
235 # You need to be root to make this work
236 RPMROOT=/usr/src/redhat
237 RPM = rpm
238 RPMFLAGS = -ba
239 rpm: dist
240         cp fetchmail-$(VERS).tar.gz $(RPMROOT)/SOURCES;
241         $(srcdir)/specgen.sh $(VERS) >$(RPMROOT)/SPECS/fetchmail.spec
242         cd $(RPMROOT)/SPECS; $(RPM) $(RPMFLAGS) fetchmail.spec  
243         cp $(RPMROOT)/RPMS/i386/fetchmail-$(VERS)*.rpm $(srcdir)
244         cp $(RPMROOT)/SRPMS/fetchmail-$(VERS)*.src.rpm $(srcdir)
245
246 # The automatically generated dependencies below may omit config.h
247 # because it is included with ``#include <config.h>'' rather than
248 # ``#include "config.h"''.  So we add the explicit dependency to make sure.
249 $(objs): config.h
250
251 rcfile_l.o: rcfile_y.h
252
253 # Automatically generated dependencies will be put at the end of the makefile.
254 # DO NOT DELETE THIS LINE -- make depend depends on it.