Initial import of mutt-ng.
[apps/madmutt.git] / imap / Makefile.in
1 # Makefile.in generated automatically by automake 1.4-p4 from Makefile.am
2
3 # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
4 # This Makefile.in is free software; the Free Software Foundation
5 # gives unlimited permission to copy and/or distribute it,
6 # with or without modifications, as long as this notice is preserved.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11 # PARTICULAR PURPOSE.
12
13
14 SHELL = @SHELL@
15
16 srcdir = @srcdir@
17 top_srcdir = @top_srcdir@
18 VPATH = @srcdir@
19 prefix = @prefix@
20 exec_prefix = @exec_prefix@
21
22 bindir = @bindir@
23 sbindir = @sbindir@
24 libexecdir = @libexecdir@
25 datadir = @datadir@
26 sysconfdir = @sysconfdir@
27 sharedstatedir = @sharedstatedir@
28 localstatedir = @localstatedir@
29 libdir = @libdir@
30 infodir = @infodir@
31 mandir = @mandir@
32 includedir = @includedir@
33 oldincludedir = /usr/include
34
35 DESTDIR =
36
37 pkgdatadir = $(datadir)/@PACKAGE@
38 pkglibdir = $(libdir)/@PACKAGE@
39 pkgincludedir = $(includedir)/@PACKAGE@
40
41 top_builddir = ..
42
43 ACLOCAL = @ACLOCAL@
44 AUTOCONF = @AUTOCONF@
45 AUTOMAKE = @AUTOMAKE@
46 AUTOHEADER = @AUTOHEADER@
47
48 INSTALL = @INSTALL@
49 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
50 INSTALL_DATA = @INSTALL_DATA@
51 INSTALL_SCRIPT = @INSTALL_SCRIPT@
52 transform = @program_transform_name@
53
54 NORMAL_INSTALL = :
55 PRE_INSTALL = :
56 POST_INSTALL = :
57 NORMAL_UNINSTALL = :
58 PRE_UNINSTALL = :
59 POST_UNINSTALL = :
60 host_alias = @host_alias@
61 host_triplet = @host@
62 BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
63 CATALOGS = @CATALOGS@
64 CATOBJEXT = @CATOBJEXT@
65 CC = @CC@
66 CPP = @CPP@
67 DATADIRNAME = @DATADIRNAME@
68 DBX = @DBX@
69 DEBUGGER = @DEBUGGER@
70 DOTLOCK_GROUP = @DOTLOCK_GROUP@
71 DOTLOCK_PERMISSION = @DOTLOCK_PERMISSION@
72 DOTLOCK_TARGET = @DOTLOCK_TARGET@
73 GDB = @GDB@
74 GENCAT = @GENCAT@
75 GLIBC21 = @GLIBC21@
76 GMOFILES = @GMOFILES@
77 GMSGFMT = @GMSGFMT@
78 HAVE_LIB = @HAVE_LIB@
79 INSTOBJEXT = @INSTOBJEXT@
80 INTLBISON = @INTLBISON@
81 INTLLIBS = @INTLLIBS@
82 INTLOBJS = @INTLOBJS@
83 INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
84 ISPELL = @ISPELL@
85 KRB5CFGPATH = @KRB5CFGPATH@
86 LIB = @LIB@
87 LIBICONV = @LIBICONV@
88 LIBIMAP = @LIBIMAP@
89 LIBIMAPDEPS = @LIBIMAPDEPS@
90 LTLIB = @LTLIB@
91 MAKEINFO = @MAKEINFO@
92 MKINSTALLDIRS = @MKINSTALLDIRS@
93 MSGFMT = @MSGFMT@
94 MUTTLIBS = @MUTTLIBS@
95 MUTT_LIB_OBJECTS = @MUTT_LIB_OBJECTS@
96 OPS = @OPS@
97 PACKAGE = @PACKAGE@
98 PGPAUX_TARGET = @PGPAUX_TARGET@
99 POFILES = @POFILES@
100 POSUB = @POSUB@
101 RANLIB = @RANLIB@
102 SDB = @SDB@
103 SENDMAIL = @SENDMAIL@
104 SMIMEAUX_TARGET = @SMIMEAUX_TARGET@
105 SUBVERSION = @SUBVERSION@
106 U = @U@
107 USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
108 USE_NLS = @USE_NLS@
109 VERSION = @VERSION@
110 docdir = @docdir@
111 mutt_libesmtp_config_path = @mutt_libesmtp_config_path@
112
113 AR = @AR@
114
115 AUTOMAKE_OPTIONS = foreign
116
117 @USE_GSS_TRUE@GSSSOURCES = auth_gss.c
118 @USE_SASL_TRUE@AUTHENTICATORS = auth_sasl.c
119 @USE_SASL_FALSE@AUTHENTICATORS = auth_anon.c auth_cram.c
120
121 EXTRA_DIST = BUGS README TODO auth_anon.c auth_cram.c auth_gss.c auth_sasl.c
122
123 INCLUDES = -I$(top_srcdir) -I../intl
124
125 noinst_LIBRARIES = libimap.a
126 noinst_HEADERS = auth.h imap_private.h message.h
127
128 libimap_a_SOURCES = auth.c auth_login.c browse.c command.c imap.c imap.h        message.c utf7.c util.c $(AUTHENTICATORS) $(GSSSOURCES)
129
130 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
131 CONFIG_HEADER = ../config.h
132 CONFIG_CLEAN_FILES = 
133 LIBRARIES =  $(noinst_LIBRARIES)
134
135
136 DEFS = @DEFS@ -I. -I$(srcdir) -I..
137 CPPFLAGS = @CPPFLAGS@
138 LDFLAGS = @LDFLAGS@
139 LIBS = @LIBS@
140 libimap_a_LIBADD = 
141 @USE_GSS_TRUE@@USE_SASL_FALSE@libimap_a_OBJECTS =  auth.o auth_login.o \
142 @USE_GSS_TRUE@@USE_SASL_FALSE@browse.o command.o imap.o message.o \
143 @USE_GSS_TRUE@@USE_SASL_FALSE@utf7.o util.o auth_anon.o auth_cram.o \
144 @USE_GSS_TRUE@@USE_SASL_FALSE@auth_gss.o
145 @USE_GSS_FALSE@@USE_SASL_TRUE@libimap_a_OBJECTS =  auth.o auth_login.o \
146 @USE_GSS_FALSE@@USE_SASL_TRUE@browse.o command.o imap.o message.o \
147 @USE_GSS_FALSE@@USE_SASL_TRUE@utf7.o util.o auth_sasl.o
148 @USE_GSS_TRUE@@USE_SASL_TRUE@libimap_a_OBJECTS =  auth.o auth_login.o \
149 @USE_GSS_TRUE@@USE_SASL_TRUE@browse.o command.o imap.o message.o utf7.o \
150 @USE_GSS_TRUE@@USE_SASL_TRUE@util.o auth_sasl.o auth_gss.o
151 @USE_GSS_FALSE@@USE_SASL_FALSE@libimap_a_OBJECTS =  auth.o auth_login.o \
152 @USE_GSS_FALSE@@USE_SASL_FALSE@browse.o command.o imap.o message.o \
153 @USE_GSS_FALSE@@USE_SASL_FALSE@utf7.o util.o auth_anon.o auth_cram.o
154 CFLAGS = @CFLAGS@
155 COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
156 CCLD = $(CC)
157 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
158 HEADERS =  $(noinst_HEADERS)
159
160 DIST_COMMON =  README Makefile.am Makefile.in TODO
161
162
163 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
164
165 TAR = tar
166 GZIP_ENV = --best
167 SOURCES = $(libimap_a_SOURCES)
168 OBJECTS = $(libimap_a_OBJECTS)
169
170 all: all-redirect
171 .SUFFIXES:
172 .SUFFIXES: .S .c .o .s
173 $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 
174         cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps imap/Makefile
175
176 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
177         cd $(top_builddir) \
178           && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
179
180
181 mostlyclean-noinstLIBRARIES:
182
183 clean-noinstLIBRARIES:
184         -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
185
186 distclean-noinstLIBRARIES:
187
188 maintainer-clean-noinstLIBRARIES:
189
190 .c.o:
191         $(COMPILE) -c $<
192
193 .s.o:
194         $(COMPILE) -c $<
195
196 .S.o:
197         $(COMPILE) -c $<
198
199 mostlyclean-compile:
200         -rm -f *.o core *.core
201
202 clean-compile:
203
204 distclean-compile:
205         -rm -f *.tab.c
206
207 maintainer-clean-compile:
208
209 libimap.a: $(libimap_a_OBJECTS) $(libimap_a_DEPENDENCIES)
210         -rm -f libimap.a
211         $(AR) cru libimap.a $(libimap_a_OBJECTS) $(libimap_a_LIBADD)
212         $(RANLIB) libimap.a
213
214 tags: TAGS
215
216 ID: $(HEADERS) $(SOURCES) $(LISP)
217         list='$(SOURCES) $(HEADERS)'; \
218         unique=`for i in $$list; do echo $$i; done | \
219           awk '    { files[$$0] = 1; } \
220                END { for (i in files) print i; }'`; \
221         here=`pwd` && cd $(srcdir) \
222           && mkid -f$$here/ID $$unique $(LISP)
223
224 TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
225         tags=; \
226         here=`pwd`; \
227         list='$(SOURCES) $(HEADERS)'; \
228         unique=`for i in $$list; do echo $$i; done | \
229           awk '    { files[$$0] = 1; } \
230                END { for (i in files) print i; }'`; \
231         test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
232           || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
233
234 mostlyclean-tags:
235
236 clean-tags:
237
238 distclean-tags:
239         -rm -f TAGS ID
240
241 maintainer-clean-tags:
242
243 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
244
245 subdir = imap
246
247 distdir: $(DISTFILES)
248         @for file in $(DISTFILES); do \
249           d=$(srcdir); \
250           if test -d $$d/$$file; then \
251             cp -pr $$d/$$file $(distdir)/$$file; \
252           else \
253             test -f $(distdir)/$$file \
254             || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
255             || cp -p $$d/$$file $(distdir)/$$file || :; \
256           fi; \
257         done
258 info-am:
259 info: info-am
260 dvi-am:
261 dvi: dvi-am
262 check-am: all-am
263 check: check-am
264 installcheck-am:
265 installcheck: installcheck-am
266 install-exec-am:
267 install-exec: install-exec-am
268
269 install-data-am:
270 install-data: install-data-am
271
272 install-am: all-am
273         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
274 install: install-am
275 uninstall-am:
276 uninstall: uninstall-am
277 all-am: Makefile $(LIBRARIES) $(HEADERS)
278 all-redirect: all-am
279 install-strip:
280         $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
281 installdirs:
282
283
284 mostlyclean-generic:
285
286 clean-generic:
287
288 distclean-generic:
289         -rm -f Makefile $(CONFIG_CLEAN_FILES)
290         -rm -f config.cache config.log stamp-h stamp-h[0-9]*
291
292 maintainer-clean-generic:
293 mostlyclean-am:  mostlyclean-noinstLIBRARIES mostlyclean-compile \
294                 mostlyclean-tags mostlyclean-generic
295
296 mostlyclean: mostlyclean-am
297
298 clean-am:  clean-noinstLIBRARIES clean-compile clean-tags clean-generic \
299                 mostlyclean-am
300
301 clean: clean-am
302
303 distclean-am:  distclean-noinstLIBRARIES distclean-compile \
304                 distclean-tags distclean-generic clean-am
305
306 distclean: distclean-am
307
308 maintainer-clean-am:  maintainer-clean-noinstLIBRARIES \
309                 maintainer-clean-compile maintainer-clean-tags \
310                 maintainer-clean-generic distclean-am
311         @echo "This command is intended for maintainers to use;"
312         @echo "it deletes files that may require special tools to rebuild."
313
314 maintainer-clean: maintainer-clean-am
315
316 .PHONY: mostlyclean-noinstLIBRARIES distclean-noinstLIBRARIES \
317 clean-noinstLIBRARIES maintainer-clean-noinstLIBRARIES \
318 mostlyclean-compile distclean-compile clean-compile \
319 maintainer-clean-compile tags mostlyclean-tags distclean-tags \
320 clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \
321 check-am installcheck-am installcheck install-exec-am install-exec \
322 install-data-am install-data install-am install uninstall-am uninstall \
323 all-redirect all-am all installdirs mostlyclean-generic \
324 distclean-generic clean-generic maintainer-clean-generic clean \
325 mostlyclean distclean maintainer-clean
326
327
328 # Tell versions [3.59,3.63) of GNU make to not export all variables.
329 # Otherwise a system limit (for SysV at least) may be exceeded.
330 .NOEXPORT: