~ubuntu-branches/ubuntu/jaunty/gnupg2/jaunty-security

« back to all changes in this revision

Viewing changes to common/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-10-04 10:25:53 UTC
  • mfrom: (5.1.15 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081004102553-fv62pp8dsitxli47
Tags: 2.0.9-3.1
* Non-maintainer upload.
* agent/gpg-agent.c: Deinit the threading library before exec'ing
  the command to run in --daemon mode. And because that still doesn't
  restore the sigprocmask, do that manually. Closes: #499569

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
1
# Makefile.in generated by automake 1.10 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6
6
# This Makefile.in is free software; the Free Software Foundation
7
7
# gives unlimited permission to copy and/or distribute it,
8
8
# with or without modifications, as long as this notice is preserved.
15
15
@SET_MAKE@
16
16
 
17
17
# Makefile for common gnupg modules
18
 
# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
19
 
#
20
 
# This file is part of GnuPG.
21
 
#
22
 
# GnuPG is free software; you can redistribute it and/or modify
23
 
# it under the terms of the GNU General Public License as published by
24
 
# the Free Software Foundation; either version 2 of the License, or
25
 
# (at your option) any later version.
26
 
27
 
# GnuPG is distributed in the hope that it will be useful,
28
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
29
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30
 
# GNU General Public License for more details.
31
 
32
 
# You should have received a copy of the GNU General Public License
33
 
# along with this program; if not, write to the Free Software
34
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
35
 
 
36
 
srcdir = @srcdir@
37
 
top_srcdir = @top_srcdir@
 
18
# Copyright (C) 2001, 2003, 2007 Free Software Foundation, Inc.
 
19
#
 
20
# This file is part of GnuPG.
 
21
#
 
22
# GnuPG is free software; you can redistribute it and/or modify
 
23
# it under the terms of the GNU General Public License as published by
 
24
# the Free Software Foundation; either version 3 of the License, or
 
25
# (at your option) any later version.
 
26
 
27
# GnuPG is distributed in the hope that it will be useful,
 
28
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
29
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
30
# GNU General Public License for more details.
 
31
 
32
# You should have received a copy of the GNU General Public License
 
33
# along with this program; if not, see <http://www.gnu.org/licenses/>.
 
34
 
 
35
# cmacros.am - C macro definitions
 
36
#     Copyright (C) 2004 Free Software Foundation, Inc.
 
37
#
 
38
# This file is part of GnuPG.
 
39
#
 
40
# GnuPG is free software; you can redistribute it and/or modify
 
41
# it under the terms of the GNU General Public License as published by
 
42
# the Free Software Foundation; either version 3 of the License, or
 
43
# (at your option) any later version.
 
44
 
45
# GnuPG is distributed in the hope that it will be useful,
 
46
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
47
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
48
# GNU General Public License for more details.
 
49
 
50
# You should have received a copy of the GNU General Public License
 
51
# along with this program; if not, see <http://www.gnu.org/licenses/>.
 
52
 
 
53
 
38
54
VPATH = @srcdir@
39
55
pkgdatadir = $(datadir)/@PACKAGE@
40
56
pkglibdir = $(libdir)/@PACKAGE@
41
57
pkgincludedir = $(includedir)/@PACKAGE@
42
 
top_builddir = ..
43
58
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
44
 
INSTALL = @INSTALL@
45
59
install_sh_DATA = $(install_sh) -c -m 644
46
60
install_sh_PROGRAM = $(install_sh) -c
47
61
install_sh_SCRIPT = $(install_sh) -c
55
69
POST_UNINSTALL = :
56
70
build_triplet = @build@
57
71
host_triplet = @host@
58
 
target_triplet = @target@
 
72
noinst_PROGRAMS = $(am__EXEEXT_1) $(am__EXEEXT_2)
 
73
TESTS = $(am__EXEEXT_1)
 
74
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
 
75
        $(top_srcdir)/am/cmacros.am ChangeLog
 
76
@HAVE_DOSISH_SYSTEM_FALSE@am__append_1 = -DGNUPG_BINDIR="\"$(bindir)\""            \
 
77
@HAVE_DOSISH_SYSTEM_FALSE@               -DGNUPG_LIBEXECDIR="\"$(libexecdir)\""    \
 
78
@HAVE_DOSISH_SYSTEM_FALSE@               -DGNUPG_LIBDIR="\"$(libdir)/@PACKAGE@\""  \
 
79
@HAVE_DOSISH_SYSTEM_FALSE@               -DGNUPG_DATADIR="\"$(datadir)/@PACKAGE@\"" \
 
80
@HAVE_DOSISH_SYSTEM_FALSE@               -DGNUPG_SYSCONFDIR="\"$(sysconfdir)/@PACKAGE@\""
 
81
 
 
82
 
 
83
# If a specific protect tool program has been defined, pass its name
 
84
# to cc.  Note that these macros should not be used directly but via
 
85
# the gnupg_module_name function.
 
86
@GNUPG_AGENT_PGM_TRUE@am__append_2 = -DGNUPG_DEFAULT_AGENT="\"@GNUPG_AGENT_PGM@\""
 
87
@GNUPG_PINENTRY_PGM_TRUE@am__append_3 = -DGNUPG_DEFAULT_PINENTRY="\"@GNUPG_PINENTRY_PGM@\""
 
88
@GNUPG_SCDAEMON_PGM_TRUE@am__append_4 = -DGNUPG_DEFAULT_SCDAEMON="\"@GNUPG_SCDAEMON_PGM@\""
 
89
@GNUPG_DIRMNGR_PGM_TRUE@am__append_5 = -DGNUPG_DEFAULT_DIRMNGR="\"@GNUPG_DIRMNGR_PGM@\""
 
90
@GNUPG_PROTECT_TOOL_PGM_TRUE@am__append_6 = -DGNUPG_DEFAULT_PROTECT_TOOL="\"@GNUPG_PROTECT_TOOL_PGM@\""
 
91
@USE_DNS_SRV_TRUE@am__append_7 = srv.c
 
92
@USE_DNS_SRV_TRUE@am__append_8 = srv.c
59
93
subdir = common
60
 
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
61
 
        ChangeLog
62
94
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
63
 
am__aclocal_m4_deps = $(top_srcdir)/gl/m4/alloca.m4 \
64
 
        $(top_srcdir)/gl/m4/allocsa.m4 $(top_srcdir)/gl/m4/eealloc.m4 \
65
 
        $(top_srcdir)/gl/m4/eoverflow.m4 \
 
95
am__aclocal_m4_deps = $(top_srcdir)/gl/m4/absolute-header.m4 \
 
96
        $(top_srcdir)/gl/m4/alloca.m4 $(top_srcdir)/gl/m4/allocsa.m4 \
 
97
        $(top_srcdir)/gl/m4/eealloc.m4 \
66
98
        $(top_srcdir)/gl/m4/gnulib-comp.m4 \
67
99
        $(top_srcdir)/gl/m4/gnulib-tool.m4 \
68
 
        $(top_srcdir)/gl/m4/intmax_t.m4 \
69
 
        $(top_srcdir)/gl/m4/inttypes_h.m4 \
70
 
        $(top_srcdir)/gl/m4/longlong.m4 $(top_srcdir)/gl/m4/mkdtemp.m4 \
71
 
        $(top_srcdir)/gl/m4/onceonly_2_57.m4 \
72
 
        $(top_srcdir)/gl/m4/setenv.m4 $(top_srcdir)/gl/m4/stdint_h.m4 \
73
 
        $(top_srcdir)/gl/m4/strpbrk.m4 $(top_srcdir)/gl/m4/strsep.m4 \
74
 
        $(top_srcdir)/gl/m4/uintmax_t.m4 \
75
 
        $(top_srcdir)/gl/m4/ulonglong.m4 \
76
 
        $(top_srcdir)/gl/m4/vasnprintf.m4 \
77
 
        $(top_srcdir)/gl/m4/vasprintf.m4 $(top_srcdir)/m4/codeset.m4 \
78
 
        $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \
 
100
        $(top_srcdir)/gl/m4/mkdtemp.m4 $(top_srcdir)/gl/m4/setenv.m4 \
 
101
        $(top_srcdir)/gl/m4/stdint.m4 $(top_srcdir)/gl/m4/strpbrk.m4 \
 
102
        $(top_srcdir)/gl/m4/unistd_h.m4 $(top_srcdir)/m4/autobuild.m4 \
 
103
        $(top_srcdir)/m4/codeset.m4 $(top_srcdir)/m4/estream.m4 \
 
104
        $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/gnupg-pth.m4 \
79
105
        $(top_srcdir)/m4/gpg-error.m4 $(top_srcdir)/m4/iconv.m4 \
80
 
        $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intmax.m4 \
81
 
        $(top_srcdir)/m4/inttypes-pri.m4 $(top_srcdir)/m4/inttypes.m4 \
82
 
        $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/ksba.m4 \
83
 
        $(top_srcdir)/m4/lcmessage.m4 $(top_srcdir)/m4/lib-ld.m4 \
84
 
        $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
85
 
        $(top_srcdir)/m4/libassuan.m4 $(top_srcdir)/m4/libgcrypt.m4 \
86
 
        $(top_srcdir)/m4/longdouble.m4 $(top_srcdir)/m4/longlong.m4 \
87
 
        $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \
88
 
        $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \
89
 
        $(top_srcdir)/m4/signed.m4 $(top_srcdir)/m4/size_max.m4 \
90
 
        $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \
91
 
        $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wchar_t.m4 \
92
 
        $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \
 
106
        $(top_srcdir)/m4/isc-posix.m4 $(top_srcdir)/m4/ksba.m4 \
 
107
        $(top_srcdir)/m4/lcmessage.m4 $(top_srcdir)/m4/ldap.m4 \
 
108
        $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
 
109
        $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libassuan.m4 \
 
110
        $(top_srcdir)/m4/libcurl.m4 $(top_srcdir)/m4/libgcrypt.m4 \
 
111
        $(top_srcdir)/m4/longdouble.m4 $(top_srcdir)/m4/nls.m4 \
 
112
        $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
 
113
        $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/size_max.m4 \
 
114
        $(top_srcdir)/m4/tar-ustar.m4 $(top_srcdir)/m4/xsize.m4 \
93
115
        $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
94
116
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
95
117
        $(ACLOCAL_M4)
100
122
ARFLAGS = cru
101
123
libcommon_a_AR = $(AR) $(ARFLAGS)
102
124
libcommon_a_LIBADD =
103
 
am_libcommon_a_OBJECTS = sexputil.$(OBJEXT) maperror.$(OBJEXT) \
104
 
        sysutils.$(OBJEXT) homedir.$(OBJEXT) gettime.$(OBJEXT) \
105
 
        yesno.$(OBJEXT) b64enc.$(OBJEXT) miscellaneous.$(OBJEXT) \
106
 
        xasprintf.$(OBJEXT) xreadline.$(OBJEXT) membuf.$(OBJEXT) \
107
 
        iobuf.$(OBJEXT) ttyio.$(OBJEXT) asshelp.$(OBJEXT) \
108
 
        exechelp.$(OBJEXT) simple-gettext.$(OBJEXT) w32reg.$(OBJEXT) \
109
 
        signal.$(OBJEXT) estream.$(OBJEXT)
 
125
am__libcommon_a_SOURCES_DIST = common-defs.h util.h i18n.c i18n.h \
 
126
        status.c status.h openpgpdefs.h gc-opt-flags.h keyserver.h \
 
127
        sexp-parse.h tlv.c tlv.h init.c init.h sexputil.c sysutils.c \
 
128
        sysutils.h homedir.c gettime.c yesno.c b64enc.c convert.c \
 
129
        miscellaneous.c xasprintf.c xreadline.c membuf.c membuf.h \
 
130
        iobuf.c iobuf.h ttyio.c ttyio.h asshelp.c asshelp.h exechelp.c \
 
131
        exechelp.h signal.c estream.c estream.h estream-printf.c \
 
132
        estream-printf.h audit.c audit.h srv.h dns-cert.c dns-cert.h \
 
133
        pka.c pka.h http.c http.h localename.c helpfile.c srv.c
 
134
am__objects_1 = libcommon_a-i18n.$(OBJEXT) \
 
135
        libcommon_a-status.$(OBJEXT) libcommon_a-tlv.$(OBJEXT) \
 
136
        libcommon_a-init.$(OBJEXT) libcommon_a-sexputil.$(OBJEXT) \
 
137
        libcommon_a-sysutils.$(OBJEXT) libcommon_a-homedir.$(OBJEXT) \
 
138
        libcommon_a-gettime.$(OBJEXT) libcommon_a-yesno.$(OBJEXT) \
 
139
        libcommon_a-b64enc.$(OBJEXT) libcommon_a-convert.$(OBJEXT) \
 
140
        libcommon_a-miscellaneous.$(OBJEXT) \
 
141
        libcommon_a-xasprintf.$(OBJEXT) \
 
142
        libcommon_a-xreadline.$(OBJEXT) libcommon_a-membuf.$(OBJEXT) \
 
143
        libcommon_a-iobuf.$(OBJEXT) libcommon_a-ttyio.$(OBJEXT) \
 
144
        libcommon_a-asshelp.$(OBJEXT) libcommon_a-exechelp.$(OBJEXT) \
 
145
        libcommon_a-signal.$(OBJEXT) libcommon_a-estream.$(OBJEXT) \
 
146
        libcommon_a-estream-printf.$(OBJEXT) \
 
147
        libcommon_a-audit.$(OBJEXT) libcommon_a-dns-cert.$(OBJEXT) \
 
148
        libcommon_a-pka.$(OBJEXT) libcommon_a-http.$(OBJEXT) \
 
149
        libcommon_a-localename.$(OBJEXT) \
 
150
        libcommon_a-helpfile.$(OBJEXT)
 
151
@USE_DNS_SRV_TRUE@am__objects_2 = libcommon_a-srv.$(OBJEXT)
 
152
am_libcommon_a_OBJECTS = $(am__objects_1) $(am__objects_2)
110
153
libcommon_a_OBJECTS = $(am_libcommon_a_OBJECTS)
 
154
libcommonpth_a_AR = $(AR) $(ARFLAGS)
 
155
libcommonpth_a_LIBADD =
 
156
am__libcommonpth_a_SOURCES_DIST = common-defs.h util.h i18n.c i18n.h \
 
157
        status.c status.h openpgpdefs.h gc-opt-flags.h keyserver.h \
 
158
        sexp-parse.h tlv.c tlv.h init.c init.h sexputil.c sysutils.c \
 
159
        sysutils.h homedir.c gettime.c yesno.c b64enc.c convert.c \
 
160
        miscellaneous.c xasprintf.c xreadline.c membuf.c membuf.h \
 
161
        iobuf.c iobuf.h ttyio.c ttyio.h asshelp.c asshelp.h exechelp.c \
 
162
        exechelp.h signal.c estream.c estream.h estream-printf.c \
 
163
        estream-printf.h audit.c audit.h srv.h dns-cert.c dns-cert.h \
 
164
        pka.c pka.h http.c http.h localename.c helpfile.c srv.c
 
165
am__objects_3 = libcommonpth_a-i18n.$(OBJEXT) \
 
166
        libcommonpth_a-status.$(OBJEXT) libcommonpth_a-tlv.$(OBJEXT) \
 
167
        libcommonpth_a-init.$(OBJEXT) \
 
168
        libcommonpth_a-sexputil.$(OBJEXT) \
 
169
        libcommonpth_a-sysutils.$(OBJEXT) \
 
170
        libcommonpth_a-homedir.$(OBJEXT) \
 
171
        libcommonpth_a-gettime.$(OBJEXT) \
 
172
        libcommonpth_a-yesno.$(OBJEXT) libcommonpth_a-b64enc.$(OBJEXT) \
 
173
        libcommonpth_a-convert.$(OBJEXT) \
 
174
        libcommonpth_a-miscellaneous.$(OBJEXT) \
 
175
        libcommonpth_a-xasprintf.$(OBJEXT) \
 
176
        libcommonpth_a-xreadline.$(OBJEXT) \
 
177
        libcommonpth_a-membuf.$(OBJEXT) libcommonpth_a-iobuf.$(OBJEXT) \
 
178
        libcommonpth_a-ttyio.$(OBJEXT) \
 
179
        libcommonpth_a-asshelp.$(OBJEXT) \
 
180
        libcommonpth_a-exechelp.$(OBJEXT) \
 
181
        libcommonpth_a-signal.$(OBJEXT) \
 
182
        libcommonpth_a-estream.$(OBJEXT) \
 
183
        libcommonpth_a-estream-printf.$(OBJEXT) \
 
184
        libcommonpth_a-audit.$(OBJEXT) \
 
185
        libcommonpth_a-dns-cert.$(OBJEXT) libcommonpth_a-pka.$(OBJEXT) \
 
186
        libcommonpth_a-http.$(OBJEXT) \
 
187
        libcommonpth_a-localename.$(OBJEXT) \
 
188
        libcommonpth_a-helpfile.$(OBJEXT)
 
189
@USE_DNS_SRV_TRUE@am__objects_4 = libcommonpth_a-srv.$(OBJEXT)
 
190
am_libcommonpth_a_OBJECTS = $(am__objects_3) $(am__objects_4)
 
191
libcommonpth_a_OBJECTS = $(am_libcommonpth_a_OBJECTS)
 
192
libgpgrl_a_AR = $(AR) $(ARFLAGS)
 
193
libgpgrl_a_LIBADD =
 
194
am_libgpgrl_a_OBJECTS = gpgrlhelp.$(OBJEXT)
 
195
libgpgrl_a_OBJECTS = $(am_libgpgrl_a_OBJECTS)
111
196
libsimple_pwquery_a_AR = $(AR) $(ARFLAGS)
112
197
libsimple_pwquery_a_LIBADD =
113
 
am_libsimple_pwquery_a_OBJECTS = simple-pwquery.$(OBJEXT) \
114
 
        asshelp.$(OBJEXT)
 
198
am_libsimple_pwquery_a_OBJECTS =  \
 
199
        libsimple_pwquery_a-simple-pwquery.$(OBJEXT) \
 
200
        libsimple_pwquery_a-asshelp.$(OBJEXT)
115
201
libsimple_pwquery_a_OBJECTS = $(am_libsimple_pwquery_a_OBJECTS)
116
 
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
202
am__EXEEXT_1 = t-convert$(EXEEXT) t-gettime$(EXEEXT) \
 
203
        t-sysutils$(EXEEXT) t-sexputil$(EXEEXT)
 
204
am__EXEEXT_2 = t-helpfile$(EXEEXT)
 
205
PROGRAMS = $(noinst_PROGRAMS)
 
206
t_convert_SOURCES = t-convert.c
 
207
t_convert_OBJECTS = t-convert.$(OBJEXT)
 
208
am__DEPENDENCIES_1 =
 
209
am__DEPENDENCIES_2 = libcommon.a ../jnlib/libjnlib.a ../gl/libgnu.a \
 
210
        $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
 
211
        $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
 
212
t_convert_DEPENDENCIES = $(am__DEPENDENCIES_2)
 
213
t_gettime_SOURCES = t-gettime.c
 
214
t_gettime_OBJECTS = t-gettime.$(OBJEXT)
 
215
t_gettime_DEPENDENCIES = $(am__DEPENDENCIES_2)
 
216
t_helpfile_SOURCES = t-helpfile.c
 
217
t_helpfile_OBJECTS = t-helpfile.$(OBJEXT)
 
218
t_helpfile_DEPENDENCIES = $(am__DEPENDENCIES_2)
 
219
t_sexputil_SOURCES = t-sexputil.c
 
220
t_sexputil_OBJECTS = t-sexputil.$(OBJEXT)
 
221
t_sexputil_DEPENDENCIES = $(am__DEPENDENCIES_2)
 
222
t_sysutils_SOURCES = t-sysutils.c
 
223
t_sysutils_OBJECTS = t-sysutils.$(OBJEXT)
 
224
t_sysutils_DEPENDENCIES = $(am__DEPENDENCIES_2)
 
225
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
117
226
depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp
118
227
am__depfiles_maybe = depfiles
119
228
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
120
229
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
121
230
CCLD = $(CC)
122
231
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
123
 
SOURCES = $(libcommon_a_SOURCES) $(libsimple_pwquery_a_SOURCES)
124
 
DIST_SOURCES = $(libcommon_a_SOURCES) $(libsimple_pwquery_a_SOURCES)
 
232
SOURCES = $(libcommon_a_SOURCES) $(libcommonpth_a_SOURCES) \
 
233
        $(libgpgrl_a_SOURCES) $(libsimple_pwquery_a_SOURCES) \
 
234
        t-convert.c t-gettime.c t-helpfile.c t-sexputil.c t-sysutils.c
 
235
DIST_SOURCES = $(am__libcommon_a_SOURCES_DIST) \
 
236
        $(am__libcommonpth_a_SOURCES_DIST) $(libgpgrl_a_SOURCES) \
 
237
        $(libsimple_pwquery_a_SOURCES) t-convert.c t-gettime.c \
 
238
        t-helpfile.c t-sexputil.c t-sysutils.c
125
239
ETAGS = etags
126
240
CTAGS = ctags
127
241
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
242
ABSOLUTE_STDINT_H = @ABSOLUTE_STDINT_H@
128
243
ACLOCAL = @ACLOCAL@
129
244
ALLOCA = @ALLOCA@
130
245
ALLOCA_H = @ALLOCA_H@
131
 
AMDEP_FALSE = @AMDEP_FALSE@
132
 
AMDEP_TRUE = @AMDEP_TRUE@
133
246
AMTAR = @AMTAR@
134
247
AR = @AR@
135
248
AUTOCONF = @AUTOCONF@
136
249
AUTOHEADER = @AUTOHEADER@
137
250
AUTOMAKE = @AUTOMAKE@
138
251
AWK = @AWK@
139
 
BUILD_AGENT_FALSE = @BUILD_AGENT_FALSE@
140
 
BUILD_AGENT_TRUE = @BUILD_AGENT_TRUE@
141
 
BUILD_GPGSM_FALSE = @BUILD_GPGSM_FALSE@
142
 
BUILD_GPGSM_TRUE = @BUILD_GPGSM_TRUE@
143
 
BUILD_GPG_FALSE = @BUILD_GPG_FALSE@
144
 
BUILD_GPG_TRUE = @BUILD_GPG_TRUE@
 
252
BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
 
253
BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
 
254
BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
 
255
BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
 
256
BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
145
257
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
146
 
BUILD_SCDAEMON_FALSE = @BUILD_SCDAEMON_FALSE@
147
 
BUILD_SCDAEMON_TRUE = @BUILD_SCDAEMON_TRUE@
148
 
BUILD_SYMCRYPTRUN_FALSE = @BUILD_SYMCRYPTRUN_FALSE@
149
 
BUILD_SYMCRYPTRUN_TRUE = @BUILD_SYMCRYPTRUN_TRUE@
150
 
CAPLIBS = @CAPLIBS@
151
 
CATOBJEXT = @CATOBJEXT@
152
258
CC = @CC@
153
259
CCDEPMODE = @CCDEPMODE@
 
260
CC_FOR_BUILD = @CC_FOR_BUILD@
154
261
CFLAGS = @CFLAGS@
155
262
CPP = @CPP@
156
263
CPPFLAGS = @CPPFLAGS@
157
 
CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@
158
 
CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@
159
264
CYGPATH_W = @CYGPATH_W@
160
 
DATADIRNAME = @DATADIRNAME@
161
265
DEFS = @DEFS@
162
266
DEPDIR = @DEPDIR@
163
267
DL_LIBS = @DL_LIBS@
164
 
DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
165
 
DOCBOOK_TO_TEXI = @DOCBOOK_TO_TEXI@
 
268
DNSLIBS = @DNSLIBS@
166
269
ECHO_C = @ECHO_C@
167
270
ECHO_N = @ECHO_N@
168
271
ECHO_T = @ECHO_T@
169
272
EGREP = @EGREP@
170
 
EOVERFLOW = @EOVERFLOW@
171
273
EXEEXT = @EXEEXT@
172
274
FAQPROG = @FAQPROG@
173
 
GENCAT = @GENCAT@
174
 
GLIBC21 = @GLIBC21@
175
 
GL_COND_LIBTOOL_FALSE = @GL_COND_LIBTOOL_FALSE@
176
 
GL_COND_LIBTOOL_TRUE = @GL_COND_LIBTOOL_TRUE@
 
275
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
177
276
GMSGFMT = @GMSGFMT@
 
277
GMSGFMT_015 = @GMSGFMT_015@
178
278
GNUPG_AGENT_PGM = @GNUPG_AGENT_PGM@
179
 
GNUPG_AGENT_PGM_FALSE = @GNUPG_AGENT_PGM_FALSE@
180
 
GNUPG_AGENT_PGM_TRUE = @GNUPG_AGENT_PGM_TRUE@
181
279
GNUPG_DIRMNGR_PGM = @GNUPG_DIRMNGR_PGM@
182
 
GNUPG_DIRMNGR_PGM_FALSE = @GNUPG_DIRMNGR_PGM_FALSE@
183
 
GNUPG_DIRMNGR_PGM_TRUE = @GNUPG_DIRMNGR_PGM_TRUE@
184
280
GNUPG_PINENTRY_PGM = @GNUPG_PINENTRY_PGM@
185
 
GNUPG_PINENTRY_PGM_FALSE = @GNUPG_PINENTRY_PGM_FALSE@
186
 
GNUPG_PINENTRY_PGM_TRUE = @GNUPG_PINENTRY_PGM_TRUE@
187
281
GNUPG_PROTECT_TOOL_PGM = @GNUPG_PROTECT_TOOL_PGM@
188
 
GNUPG_PROTECT_TOOL_PGM_FALSE = @GNUPG_PROTECT_TOOL_PGM_FALSE@
189
 
GNUPG_PROTECT_TOOL_PGM_TRUE = @GNUPG_PROTECT_TOOL_PGM_TRUE@
190
282
GNUPG_SCDAEMON_PGM = @GNUPG_SCDAEMON_PGM@
191
 
GNUPG_SCDAEMON_PGM_FALSE = @GNUPG_SCDAEMON_PGM_FALSE@
192
 
GNUPG_SCDAEMON_PGM_TRUE = @GNUPG_SCDAEMON_PGM_TRUE@
 
283
GPGKEYS_CURL = @GPGKEYS_CURL@
 
284
GPGKEYS_FINGER = @GPGKEYS_FINGER@
193
285
GPGKEYS_HKP = @GPGKEYS_HKP@
194
286
GPGKEYS_LDAP = @GPGKEYS_LDAP@
195
287
GPGKEYS_MAILTO = @GPGKEYS_MAILTO@
196
288
GPG_ERROR_CFLAGS = @GPG_ERROR_CFLAGS@
197
289
GPG_ERROR_CONFIG = @GPG_ERROR_CONFIG@
198
290
GPG_ERROR_LIBS = @GPG_ERROR_LIBS@
199
 
HAVE_ASPRINTF = @HAVE_ASPRINTF@
200
 
HAVE_DOCBOOK_TO_MAN_FALSE = @HAVE_DOCBOOK_TO_MAN_FALSE@
201
 
HAVE_DOCBOOK_TO_MAN_TRUE = @HAVE_DOCBOOK_TO_MAN_TRUE@
202
 
HAVE_DOCBOOK_TO_TEXI_FALSE = @HAVE_DOCBOOK_TO_TEXI_FALSE@
203
 
HAVE_DOCBOOK_TO_TEXI_TRUE = @HAVE_DOCBOOK_TO_TEXI_TRUE@
204
 
HAVE_DOSISH_SYSTEM_FALSE = @HAVE_DOSISH_SYSTEM_FALSE@
205
 
HAVE_DOSISH_SYSTEM_TRUE = @HAVE_DOSISH_SYSTEM_TRUE@
206
 
HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@
207
 
HAVE_SNPRINTF = @HAVE_SNPRINTF@
208
 
HAVE_W32_SYSTEM_FALSE = @HAVE_W32_SYSTEM_FALSE@
209
 
HAVE_W32_SYSTEM_TRUE = @HAVE_W32_SYSTEM_TRUE@
210
 
HAVE_WPRINTF = @HAVE_WPRINTF@
 
291
GREP = @GREP@
 
292
HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
 
293
HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
 
294
HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
 
295
HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
 
296
HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
 
297
HAVE_STDINT_H = @HAVE_STDINT_H@
 
298
HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
 
299
HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
 
300
HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
 
301
HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
 
302
HAVE_WCHAR_H = @HAVE_WCHAR_H@
 
303
INSTALL = @INSTALL@
211
304
INSTALL_DATA = @INSTALL_DATA@
212
305
INSTALL_PROGRAM = @INSTALL_PROGRAM@
213
306
INSTALL_SCRIPT = @INSTALL_SCRIPT@
214
307
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
215
 
INSTOBJEXT = @INSTOBJEXT@
216
 
INTLBISON = @INTLBISON@
217
308
INTLLIBS = @INTLLIBS@
218
 
INTLOBJS = @INTLOBJS@
219
 
INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
 
309
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
220
310
KSBA_CFLAGS = @KSBA_CFLAGS@
221
311
KSBA_CONFIG = @KSBA_CONFIG@
222
312
KSBA_LIBS = @KSBA_LIBS@
223
313
LDAPLIBS = @LDAPLIBS@
 
314
LDAP_CPPFLAGS = @LDAP_CPPFLAGS@
224
315
LDFLAGS = @LDFLAGS@
225
316
LIBASSUAN_CFLAGS = @LIBASSUAN_CFLAGS@
226
317
LIBASSUAN_CONFIG = @LIBASSUAN_CONFIG@
227
318
LIBASSUAN_LIBS = @LIBASSUAN_LIBS@
 
319
LIBASSUAN_PTH_CFLAGS = @LIBASSUAN_PTH_CFLAGS@
 
320
LIBASSUAN_PTH_LIBS = @LIBASSUAN_PTH_LIBS@
 
321
LIBCURL = @LIBCURL@
 
322
LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
228
323
LIBGCRYPT_CFLAGS = @LIBGCRYPT_CFLAGS@
229
324
LIBGCRYPT_CONFIG = @LIBGCRYPT_CONFIG@
230
325
LIBGCRYPT_LIBS = @LIBGCRYPT_LIBS@
 
326
LIBGNU_LIBDEPS = @LIBGNU_LIBDEPS@
 
327
LIBGNU_LTLIBDEPS = @LIBGNU_LTLIBDEPS@
231
328
LIBICONV = @LIBICONV@
232
329
LIBINTL = @LIBINTL@
233
330
LIBOBJS = @LIBOBJS@
 
331
LIBREADLINE = @LIBREADLINE@
234
332
LIBS = @LIBS@
235
333
LIBUSB_LIBS = @LIBUSB_LIBS@
236
334
LIBUTIL_LIBS = @LIBUTIL_LIBS@
239
337
LTLIBINTL = @LTLIBINTL@
240
338
LTLIBOBJS = @LTLIBOBJS@
241
339
MAINT = @MAINT@
242
 
MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
243
 
MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
244
340
MAKEINFO = @MAKEINFO@
245
 
MKINSTALLDIRS = @MKINSTALLDIRS@
 
341
MKDIR_P = @MKDIR_P@
246
342
MSGFMT = @MSGFMT@
 
343
MSGFMT_015 = @MSGFMT_015@
247
344
MSGMERGE = @MSGMERGE@
248
345
NETLIBS = @NETLIBS@
249
346
OBJEXT = @OBJEXT@
260
357
PTH_CFLAGS = @PTH_CFLAGS@
261
358
PTH_CONFIG = @PTH_CONFIG@
262
359
PTH_LIBS = @PTH_LIBS@
 
360
PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
263
361
RANLIB = @RANLIB@
264
 
REGEX_O = @REGEX_O@
265
 
RUN_PKITS_TESTS_FALSE = @RUN_PKITS_TESTS_FALSE@
266
 
RUN_PKITS_TESTS_TRUE = @RUN_PKITS_TESTS_TRUE@
267
362
SENDMAIL = @SENDMAIL@
268
363
SET_MAKE = @SET_MAKE@
269
 
SHA512_O = @SHA512_O@
270
364
SHELL = @SHELL@
271
365
SHRED = @SHRED@
272
 
SRVLIBS = @SRVLIBS@
 
366
SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
 
367
SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
 
368
STDINT_H = @STDINT_H@
273
369
STRIP = @STRIP@
 
370
TAR = @TAR@
 
371
UNISTD_H = @UNISTD_H@
274
372
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
275
373
USE_NLS = @USE_NLS@
276
374
VERSION = @VERSION@
277
 
W32LIBS = @W32LIBS@
278
 
WORKING_FAQPROG_FALSE = @WORKING_FAQPROG_FALSE@
279
 
WORKING_FAQPROG_TRUE = @WORKING_FAQPROG_TRUE@
 
375
W32SOCKLIBS = @W32SOCKLIBS@
 
376
WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
 
377
WINDRES = @WINDRES@
 
378
WINT_T_SUFFIX = @WINT_T_SUFFIX@
280
379
XGETTEXT = @XGETTEXT@
281
 
ac_ct_AR = @ac_ct_AR@
 
380
XGETTEXT_015 = @XGETTEXT_015@
 
381
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
 
382
ZLIBS = @ZLIBS@
 
383
_libcurl_config = @_libcurl_config@
 
384
abs_builddir = @abs_builddir@
 
385
abs_srcdir = @abs_srcdir@
 
386
abs_top_builddir = @abs_top_builddir@
 
387
abs_top_srcdir = @abs_top_srcdir@
282
388
ac_ct_CC = @ac_ct_CC@
283
 
ac_ct_RANLIB = @ac_ct_RANLIB@
284
 
ac_ct_STRIP = @ac_ct_STRIP@
285
 
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
286
 
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
287
389
am__include = @am__include@
288
390
am__leading_dot = @am__leading_dot@
289
391
am__quote = @am__quote@
295
397
build_cpu = @build_cpu@
296
398
build_os = @build_os@
297
399
build_vendor = @build_vendor@
 
400
builddir = @builddir@
298
401
datadir = @datadir@
 
402
datarootdir = @datarootdir@
 
403
docdir = @docdir@
 
404
dvidir = @dvidir@
299
405
exec_prefix = @exec_prefix@
300
406
host = @host@
301
407
host_alias = @host_alias@
302
408
host_cpu = @host_cpu@
303
409
host_os = @host_os@
304
410
host_vendor = @host_vendor@
 
411
htmldir = @htmldir@
305
412
includedir = @includedir@
306
413
infodir = @infodir@
307
414
install_sh = @install_sh@
308
415
libdir = @libdir@
309
416
libexecdir = @libexecdir@
 
417
localedir = $(datadir)/locale
310
418
localstatedir = @localstatedir@
311
419
mandir = @mandir@
312
420
mkdir_p = @mkdir_p@
313
421
oldincludedir = @oldincludedir@
 
422
pdfdir = @pdfdir@
314
423
prefix = @prefix@
315
424
program_transform_name = @program_transform_name@
 
425
psdir = @psdir@
316
426
sbindir = @sbindir@
317
427
sharedstatedir = @sharedstatedir@
 
428
srcdir = @srcdir@
318
429
sysconfdir = @sysconfdir@
319
 
target = @target@
320
430
target_alias = @target_alias@
321
 
target_cpu = @target_cpu@
322
 
target_os = @target_os@
323
 
target_vendor = @target_vendor@
324
 
noinst_LIBRARIES = libcommon.a libsimple-pwquery.a
325
 
AM_CPPFLAGS = -I$(top_srcdir)/gl
326
 
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBASSUAN_CFLAGS) $(KSBA_CFLAGS) \
327
 
            $(PTH_CFLAGS)
328
 
 
329
 
libcommon_a_SOURCES = \
330
 
        util.h i18n.h \
331
 
        errors.h \
 
431
top_builddir = @top_builddir@
 
432
top_srcdir = @top_srcdir@
 
433
EXTRA_DIST = mkstrtable.awk exaudit.awk exstatus.awk \
 
434
             audit-events.h status-codes.h
 
435
 
 
436
noinst_LIBRARIES = libcommon.a libcommonpth.a libsimple-pwquery.a libgpgrl.a
 
437
BUILT_SOURCES = audit-events.h status-codes.h
 
438
CLEANFILES = audit-events.h status-codes.h
 
439
AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/intl \
 
440
        -DLOCALEDIR=\"$(localedir)\" $(am__append_1) $(am__append_2) \
 
441
        $(am__append_3) $(am__append_4) $(am__append_5) \
 
442
        $(am__append_6)
 
443
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS)
 
444
 
 
445
# Convenience macros
 
446
libcommon = ../common/libcommon.a
 
447
libcommonpth = ../common/libcommonpth.a
 
448
common_sources = \
 
449
        common-defs.h \
 
450
        util.h i18n.c i18n.h \
 
451
        status.c status.h\
 
452
        openpgpdefs.h \
 
453
        gc-opt-flags.h \
 
454
        keyserver.h \
332
455
        sexp-parse.h \
 
456
        tlv.c tlv.h \
 
457
        init.c init.h \
333
458
        sexputil.c \
334
 
        maperror.c \
335
459
        sysutils.c sysutils.h \
336
460
        homedir.c \
337
461
        gettime.c \
338
462
        yesno.c \
339
463
        b64enc.c \
 
464
        convert.c \
340
465
        miscellaneous.c \
341
466
        xasprintf.c \
342
467
        xreadline.c \
345
470
        ttyio.c ttyio.h \
346
471
        asshelp.c asshelp.h \
347
472
        exechelp.c exechelp.h \
348
 
        simple-gettext.c \
349
 
        w32reg.c \
350
473
        signal.c \
351
 
        dynload.h \
352
 
        estream.c estream.h
 
474
        estream.c estream.h estream-printf.c estream-printf.h \
 
475
        audit.c audit.h \
 
476
        srv.h \
 
477
        dns-cert.c dns-cert.h \
 
478
        pka.c pka.h \
 
479
        http.c http.h \
 
480
        localename.c \
 
481
        helpfile.c
353
482
 
 
483
libcommon_a_SOURCES = $(common_sources) $(am__append_7)
 
484
libcommon_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS) -DWITHOUT_GNU_PTH=1
 
485
libcommonpth_a_SOURCES = $(common_sources) $(am__append_8)
 
486
libcommonpth_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_PTH_CFLAGS) $(PTH_CFLAGS)
354
487
libsimple_pwquery_a_SOURCES = \
355
488
        simple-pwquery.c simple-pwquery.h asshelp.c asshelp.h
356
489
 
357
 
all: all-am
 
490
libsimple_pwquery_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS)
 
491
libgpgrl_a_SOURCES = \
 
492
        gpgrlhelp.c
 
493
 
 
494
 
 
495
#
 
496
# Module tests
 
497
#
 
498
module_tests = t-convert t-gettime t-sysutils t-sexputil
 
499
module_maint_tests = t-helpfile
 
500
t_common_ldadd = libcommon.a ../jnlib/libjnlib.a ../gl/libgnu.a \
 
501
                 $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV)
 
502
 
 
503
t_convert_LDADD = $(t_common_ldadd)
 
504
t_gettime_LDADD = $(t_common_ldadd)
 
505
t_sysutils_LDADD = $(t_common_ldadd)
 
506
t_helpfile_LDADD = $(t_common_ldadd)
 
507
t_sexputil_LDADD = $(t_common_ldadd)
 
508
all: $(BUILT_SOURCES)
 
509
        $(MAKE) $(AM_MAKEFLAGS) all-am
358
510
 
359
511
.SUFFIXES:
360
512
.SUFFIXES: .c .o .obj
361
 
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
513
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/am/cmacros.am $(am__configure_deps)
362
514
        @for dep in $?; do \
363
515
          case '$(am__configure_deps)' in \
364
516
            *$$dep*) \
394
546
        -rm -f libcommon.a
395
547
        $(libcommon_a_AR) libcommon.a $(libcommon_a_OBJECTS) $(libcommon_a_LIBADD)
396
548
        $(RANLIB) libcommon.a
 
549
libcommonpth.a: $(libcommonpth_a_OBJECTS) $(libcommonpth_a_DEPENDENCIES) 
 
550
        -rm -f libcommonpth.a
 
551
        $(libcommonpth_a_AR) libcommonpth.a $(libcommonpth_a_OBJECTS) $(libcommonpth_a_LIBADD)
 
552
        $(RANLIB) libcommonpth.a
 
553
libgpgrl.a: $(libgpgrl_a_OBJECTS) $(libgpgrl_a_DEPENDENCIES) 
 
554
        -rm -f libgpgrl.a
 
555
        $(libgpgrl_a_AR) libgpgrl.a $(libgpgrl_a_OBJECTS) $(libgpgrl_a_LIBADD)
 
556
        $(RANLIB) libgpgrl.a
397
557
libsimple-pwquery.a: $(libsimple_pwquery_a_OBJECTS) $(libsimple_pwquery_a_DEPENDENCIES) 
398
558
        -rm -f libsimple-pwquery.a
399
559
        $(libsimple_pwquery_a_AR) libsimple-pwquery.a $(libsimple_pwquery_a_OBJECTS) $(libsimple_pwquery_a_LIBADD)
400
560
        $(RANLIB) libsimple-pwquery.a
401
561
 
 
562
clean-noinstPROGRAMS:
 
563
        -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
 
564
t-convert$(EXEEXT): $(t_convert_OBJECTS) $(t_convert_DEPENDENCIES) 
 
565
        @rm -f t-convert$(EXEEXT)
 
566
        $(LINK) $(t_convert_OBJECTS) $(t_convert_LDADD) $(LIBS)
 
567
t-gettime$(EXEEXT): $(t_gettime_OBJECTS) $(t_gettime_DEPENDENCIES) 
 
568
        @rm -f t-gettime$(EXEEXT)
 
569
        $(LINK) $(t_gettime_OBJECTS) $(t_gettime_LDADD) $(LIBS)
 
570
t-helpfile$(EXEEXT): $(t_helpfile_OBJECTS) $(t_helpfile_DEPENDENCIES) 
 
571
        @rm -f t-helpfile$(EXEEXT)
 
572
        $(LINK) $(t_helpfile_OBJECTS) $(t_helpfile_LDADD) $(LIBS)
 
573
t-sexputil$(EXEEXT): $(t_sexputil_OBJECTS) $(t_sexputil_DEPENDENCIES) 
 
574
        @rm -f t-sexputil$(EXEEXT)
 
575
        $(LINK) $(t_sexputil_OBJECTS) $(t_sexputil_LDADD) $(LIBS)
 
576
t-sysutils$(EXEEXT): $(t_sysutils_OBJECTS) $(t_sysutils_DEPENDENCIES) 
 
577
        @rm -f t-sysutils$(EXEEXT)
 
578
        $(LINK) $(t_sysutils_OBJECTS) $(t_sysutils_LDADD) $(LIBS)
 
579
 
402
580
mostlyclean-compile:
403
581
        -rm -f *.$(OBJEXT)
404
582
 
405
583
distclean-compile:
406
584
        -rm -f *.tab.c
407
585
 
408
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asshelp.Po@am__quote@
409
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/b64enc.Po@am__quote@
410
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/estream.Po@am__quote@
411
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exechelp.Po@am__quote@
412
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gettime.Po@am__quote@
413
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/homedir.Po@am__quote@
414
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/iobuf.Po@am__quote@
415
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/maperror.Po@am__quote@
416
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/membuf.Po@am__quote@
417
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/miscellaneous.Po@am__quote@
418
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sexputil.Po@am__quote@
419
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signal.Po@am__quote@
420
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple-gettext.Po@am__quote@
421
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple-pwquery.Po@am__quote@
422
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysutils.Po@am__quote@
423
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttyio.Po@am__quote@
424
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/w32reg.Po@am__quote@
425
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xasprintf.Po@am__quote@
426
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xreadline.Po@am__quote@
427
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/yesno.Po@am__quote@
 
586
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gpgrlhelp.Po@am__quote@
 
587
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-asshelp.Po@am__quote@
 
588
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-audit.Po@am__quote@
 
589
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-b64enc.Po@am__quote@
 
590
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-convert.Po@am__quote@
 
591
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-dns-cert.Po@am__quote@
 
592
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-estream-printf.Po@am__quote@
 
593
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-estream.Po@am__quote@
 
594
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-exechelp.Po@am__quote@
 
595
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-gettime.Po@am__quote@
 
596
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-helpfile.Po@am__quote@
 
597
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-homedir.Po@am__quote@
 
598
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-http.Po@am__quote@
 
599
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-i18n.Po@am__quote@
 
600
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-init.Po@am__quote@
 
601
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-iobuf.Po@am__quote@
 
602
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-localename.Po@am__quote@
 
603
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-membuf.Po@am__quote@
 
604
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-miscellaneous.Po@am__quote@
 
605
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-pka.Po@am__quote@
 
606
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-sexputil.Po@am__quote@
 
607
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-signal.Po@am__quote@
 
608
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-srv.Po@am__quote@
 
609
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-status.Po@am__quote@
 
610
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-sysutils.Po@am__quote@
 
611
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-tlv.Po@am__quote@
 
612
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-ttyio.Po@am__quote@
 
613
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-xasprintf.Po@am__quote@
 
614
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-xreadline.Po@am__quote@
 
615
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommon_a-yesno.Po@am__quote@
 
616
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-asshelp.Po@am__quote@
 
617
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-audit.Po@am__quote@
 
618
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-b64enc.Po@am__quote@
 
619
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-convert.Po@am__quote@
 
620
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-dns-cert.Po@am__quote@
 
621
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-estream-printf.Po@am__quote@
 
622
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-estream.Po@am__quote@
 
623
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-exechelp.Po@am__quote@
 
624
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-gettime.Po@am__quote@
 
625
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-helpfile.Po@am__quote@
 
626
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-homedir.Po@am__quote@
 
627
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-http.Po@am__quote@
 
628
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-i18n.Po@am__quote@
 
629
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-init.Po@am__quote@
 
630
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-iobuf.Po@am__quote@
 
631
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-localename.Po@am__quote@
 
632
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-membuf.Po@am__quote@
 
633
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-miscellaneous.Po@am__quote@
 
634
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-pka.Po@am__quote@
 
635
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-sexputil.Po@am__quote@
 
636
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-signal.Po@am__quote@
 
637
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-srv.Po@am__quote@
 
638
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-status.Po@am__quote@
 
639
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-sysutils.Po@am__quote@
 
640
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-tlv.Po@am__quote@
 
641
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-ttyio.Po@am__quote@
 
642
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-xasprintf.Po@am__quote@
 
643
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-xreadline.Po@am__quote@
 
644
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcommonpth_a-yesno.Po@am__quote@
 
645
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsimple_pwquery_a-asshelp.Po@am__quote@
 
646
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsimple_pwquery_a-simple-pwquery.Po@am__quote@
 
647
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t-convert.Po@am__quote@
 
648
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t-gettime.Po@am__quote@
 
649
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t-helpfile.Po@am__quote@
 
650
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t-sexputil.Po@am__quote@
 
651
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t-sysutils.Po@am__quote@
428
652
 
429
653
.c.o:
430
 
@am__fastdepCC_TRUE@    if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
431
 
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
654
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
655
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
432
656
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
433
657
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
434
658
@am__fastdepCC_FALSE@   $(COMPILE) -c $<
435
659
 
436
660
.c.obj:
437
 
@am__fastdepCC_TRUE@    if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
438
 
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
661
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
 
662
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
439
663
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
440
664
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
441
665
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
442
 
uninstall-info-am:
 
666
 
 
667
libcommon_a-i18n.o: i18n.c
 
668
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-i18n.o -MD -MP -MF $(DEPDIR)/libcommon_a-i18n.Tpo -c -o libcommon_a-i18n.o `test -f 'i18n.c' || echo '$(srcdir)/'`i18n.c
 
669
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-i18n.Tpo $(DEPDIR)/libcommon_a-i18n.Po
 
670
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='i18n.c' object='libcommon_a-i18n.o' libtool=no @AMDEPBACKSLASH@
 
671
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
672
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-i18n.o `test -f 'i18n.c' || echo '$(srcdir)/'`i18n.c
 
673
 
 
674
libcommon_a-i18n.obj: i18n.c
 
675
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-i18n.obj -MD -MP -MF $(DEPDIR)/libcommon_a-i18n.Tpo -c -o libcommon_a-i18n.obj `if test -f 'i18n.c'; then $(CYGPATH_W) 'i18n.c'; else $(CYGPATH_W) '$(srcdir)/i18n.c'; fi`
 
676
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-i18n.Tpo $(DEPDIR)/libcommon_a-i18n.Po
 
677
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='i18n.c' object='libcommon_a-i18n.obj' libtool=no @AMDEPBACKSLASH@
 
678
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
679
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-i18n.obj `if test -f 'i18n.c'; then $(CYGPATH_W) 'i18n.c'; else $(CYGPATH_W) '$(srcdir)/i18n.c'; fi`
 
680
 
 
681
libcommon_a-status.o: status.c
 
682
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-status.o -MD -MP -MF $(DEPDIR)/libcommon_a-status.Tpo -c -o libcommon_a-status.o `test -f 'status.c' || echo '$(srcdir)/'`status.c
 
683
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-status.Tpo $(DEPDIR)/libcommon_a-status.Po
 
684
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='status.c' object='libcommon_a-status.o' libtool=no @AMDEPBACKSLASH@
 
685
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
686
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-status.o `test -f 'status.c' || echo '$(srcdir)/'`status.c
 
687
 
 
688
libcommon_a-status.obj: status.c
 
689
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-status.obj -MD -MP -MF $(DEPDIR)/libcommon_a-status.Tpo -c -o libcommon_a-status.obj `if test -f 'status.c'; then $(CYGPATH_W) 'status.c'; else $(CYGPATH_W) '$(srcdir)/status.c'; fi`
 
690
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-status.Tpo $(DEPDIR)/libcommon_a-status.Po
 
691
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='status.c' object='libcommon_a-status.obj' libtool=no @AMDEPBACKSLASH@
 
692
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
693
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-status.obj `if test -f 'status.c'; then $(CYGPATH_W) 'status.c'; else $(CYGPATH_W) '$(srcdir)/status.c'; fi`
 
694
 
 
695
libcommon_a-tlv.o: tlv.c
 
696
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-tlv.o -MD -MP -MF $(DEPDIR)/libcommon_a-tlv.Tpo -c -o libcommon_a-tlv.o `test -f 'tlv.c' || echo '$(srcdir)/'`tlv.c
 
697
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-tlv.Tpo $(DEPDIR)/libcommon_a-tlv.Po
 
698
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tlv.c' object='libcommon_a-tlv.o' libtool=no @AMDEPBACKSLASH@
 
699
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
700
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-tlv.o `test -f 'tlv.c' || echo '$(srcdir)/'`tlv.c
 
701
 
 
702
libcommon_a-tlv.obj: tlv.c
 
703
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-tlv.obj -MD -MP -MF $(DEPDIR)/libcommon_a-tlv.Tpo -c -o libcommon_a-tlv.obj `if test -f 'tlv.c'; then $(CYGPATH_W) 'tlv.c'; else $(CYGPATH_W) '$(srcdir)/tlv.c'; fi`
 
704
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-tlv.Tpo $(DEPDIR)/libcommon_a-tlv.Po
 
705
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tlv.c' object='libcommon_a-tlv.obj' libtool=no @AMDEPBACKSLASH@
 
706
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
707
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-tlv.obj `if test -f 'tlv.c'; then $(CYGPATH_W) 'tlv.c'; else $(CYGPATH_W) '$(srcdir)/tlv.c'; fi`
 
708
 
 
709
libcommon_a-init.o: init.c
 
710
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-init.o -MD -MP -MF $(DEPDIR)/libcommon_a-init.Tpo -c -o libcommon_a-init.o `test -f 'init.c' || echo '$(srcdir)/'`init.c
 
711
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-init.Tpo $(DEPDIR)/libcommon_a-init.Po
 
712
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='init.c' object='libcommon_a-init.o' libtool=no @AMDEPBACKSLASH@
 
713
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
714
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-init.o `test -f 'init.c' || echo '$(srcdir)/'`init.c
 
715
 
 
716
libcommon_a-init.obj: init.c
 
717
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-init.obj -MD -MP -MF $(DEPDIR)/libcommon_a-init.Tpo -c -o libcommon_a-init.obj `if test -f 'init.c'; then $(CYGPATH_W) 'init.c'; else $(CYGPATH_W) '$(srcdir)/init.c'; fi`
 
718
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-init.Tpo $(DEPDIR)/libcommon_a-init.Po
 
719
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='init.c' object='libcommon_a-init.obj' libtool=no @AMDEPBACKSLASH@
 
720
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
721
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-init.obj `if test -f 'init.c'; then $(CYGPATH_W) 'init.c'; else $(CYGPATH_W) '$(srcdir)/init.c'; fi`
 
722
 
 
723
libcommon_a-sexputil.o: sexputil.c
 
724
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-sexputil.o -MD -MP -MF $(DEPDIR)/libcommon_a-sexputil.Tpo -c -o libcommon_a-sexputil.o `test -f 'sexputil.c' || echo '$(srcdir)/'`sexputil.c
 
725
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-sexputil.Tpo $(DEPDIR)/libcommon_a-sexputil.Po
 
726
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sexputil.c' object='libcommon_a-sexputil.o' libtool=no @AMDEPBACKSLASH@
 
727
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
728
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-sexputil.o `test -f 'sexputil.c' || echo '$(srcdir)/'`sexputil.c
 
729
 
 
730
libcommon_a-sexputil.obj: sexputil.c
 
731
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-sexputil.obj -MD -MP -MF $(DEPDIR)/libcommon_a-sexputil.Tpo -c -o libcommon_a-sexputil.obj `if test -f 'sexputil.c'; then $(CYGPATH_W) 'sexputil.c'; else $(CYGPATH_W) '$(srcdir)/sexputil.c'; fi`
 
732
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-sexputil.Tpo $(DEPDIR)/libcommon_a-sexputil.Po
 
733
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sexputil.c' object='libcommon_a-sexputil.obj' libtool=no @AMDEPBACKSLASH@
 
734
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
735
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-sexputil.obj `if test -f 'sexputil.c'; then $(CYGPATH_W) 'sexputil.c'; else $(CYGPATH_W) '$(srcdir)/sexputil.c'; fi`
 
736
 
 
737
libcommon_a-sysutils.o: sysutils.c
 
738
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-sysutils.o -MD -MP -MF $(DEPDIR)/libcommon_a-sysutils.Tpo -c -o libcommon_a-sysutils.o `test -f 'sysutils.c' || echo '$(srcdir)/'`sysutils.c
 
739
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-sysutils.Tpo $(DEPDIR)/libcommon_a-sysutils.Po
 
740
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sysutils.c' object='libcommon_a-sysutils.o' libtool=no @AMDEPBACKSLASH@
 
741
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
742
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-sysutils.o `test -f 'sysutils.c' || echo '$(srcdir)/'`sysutils.c
 
743
 
 
744
libcommon_a-sysutils.obj: sysutils.c
 
745
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-sysutils.obj -MD -MP -MF $(DEPDIR)/libcommon_a-sysutils.Tpo -c -o libcommon_a-sysutils.obj `if test -f 'sysutils.c'; then $(CYGPATH_W) 'sysutils.c'; else $(CYGPATH_W) '$(srcdir)/sysutils.c'; fi`
 
746
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-sysutils.Tpo $(DEPDIR)/libcommon_a-sysutils.Po
 
747
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sysutils.c' object='libcommon_a-sysutils.obj' libtool=no @AMDEPBACKSLASH@
 
748
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
749
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-sysutils.obj `if test -f 'sysutils.c'; then $(CYGPATH_W) 'sysutils.c'; else $(CYGPATH_W) '$(srcdir)/sysutils.c'; fi`
 
750
 
 
751
libcommon_a-homedir.o: homedir.c
 
752
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-homedir.o -MD -MP -MF $(DEPDIR)/libcommon_a-homedir.Tpo -c -o libcommon_a-homedir.o `test -f 'homedir.c' || echo '$(srcdir)/'`homedir.c
 
753
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-homedir.Tpo $(DEPDIR)/libcommon_a-homedir.Po
 
754
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='homedir.c' object='libcommon_a-homedir.o' libtool=no @AMDEPBACKSLASH@
 
755
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
756
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-homedir.o `test -f 'homedir.c' || echo '$(srcdir)/'`homedir.c
 
757
 
 
758
libcommon_a-homedir.obj: homedir.c
 
759
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-homedir.obj -MD -MP -MF $(DEPDIR)/libcommon_a-homedir.Tpo -c -o libcommon_a-homedir.obj `if test -f 'homedir.c'; then $(CYGPATH_W) 'homedir.c'; else $(CYGPATH_W) '$(srcdir)/homedir.c'; fi`
 
760
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-homedir.Tpo $(DEPDIR)/libcommon_a-homedir.Po
 
761
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='homedir.c' object='libcommon_a-homedir.obj' libtool=no @AMDEPBACKSLASH@
 
762
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
763
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-homedir.obj `if test -f 'homedir.c'; then $(CYGPATH_W) 'homedir.c'; else $(CYGPATH_W) '$(srcdir)/homedir.c'; fi`
 
764
 
 
765
libcommon_a-gettime.o: gettime.c
 
766
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-gettime.o -MD -MP -MF $(DEPDIR)/libcommon_a-gettime.Tpo -c -o libcommon_a-gettime.o `test -f 'gettime.c' || echo '$(srcdir)/'`gettime.c
 
767
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-gettime.Tpo $(DEPDIR)/libcommon_a-gettime.Po
 
768
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gettime.c' object='libcommon_a-gettime.o' libtool=no @AMDEPBACKSLASH@
 
769
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
770
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-gettime.o `test -f 'gettime.c' || echo '$(srcdir)/'`gettime.c
 
771
 
 
772
libcommon_a-gettime.obj: gettime.c
 
773
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-gettime.obj -MD -MP -MF $(DEPDIR)/libcommon_a-gettime.Tpo -c -o libcommon_a-gettime.obj `if test -f 'gettime.c'; then $(CYGPATH_W) 'gettime.c'; else $(CYGPATH_W) '$(srcdir)/gettime.c'; fi`
 
774
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-gettime.Tpo $(DEPDIR)/libcommon_a-gettime.Po
 
775
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gettime.c' object='libcommon_a-gettime.obj' libtool=no @AMDEPBACKSLASH@
 
776
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
777
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-gettime.obj `if test -f 'gettime.c'; then $(CYGPATH_W) 'gettime.c'; else $(CYGPATH_W) '$(srcdir)/gettime.c'; fi`
 
778
 
 
779
libcommon_a-yesno.o: yesno.c
 
780
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-yesno.o -MD -MP -MF $(DEPDIR)/libcommon_a-yesno.Tpo -c -o libcommon_a-yesno.o `test -f 'yesno.c' || echo '$(srcdir)/'`yesno.c
 
781
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-yesno.Tpo $(DEPDIR)/libcommon_a-yesno.Po
 
782
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='yesno.c' object='libcommon_a-yesno.o' libtool=no @AMDEPBACKSLASH@
 
783
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
784
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-yesno.o `test -f 'yesno.c' || echo '$(srcdir)/'`yesno.c
 
785
 
 
786
libcommon_a-yesno.obj: yesno.c
 
787
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-yesno.obj -MD -MP -MF $(DEPDIR)/libcommon_a-yesno.Tpo -c -o libcommon_a-yesno.obj `if test -f 'yesno.c'; then $(CYGPATH_W) 'yesno.c'; else $(CYGPATH_W) '$(srcdir)/yesno.c'; fi`
 
788
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-yesno.Tpo $(DEPDIR)/libcommon_a-yesno.Po
 
789
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='yesno.c' object='libcommon_a-yesno.obj' libtool=no @AMDEPBACKSLASH@
 
790
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
791
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-yesno.obj `if test -f 'yesno.c'; then $(CYGPATH_W) 'yesno.c'; else $(CYGPATH_W) '$(srcdir)/yesno.c'; fi`
 
792
 
 
793
libcommon_a-b64enc.o: b64enc.c
 
794
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-b64enc.o -MD -MP -MF $(DEPDIR)/libcommon_a-b64enc.Tpo -c -o libcommon_a-b64enc.o `test -f 'b64enc.c' || echo '$(srcdir)/'`b64enc.c
 
795
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-b64enc.Tpo $(DEPDIR)/libcommon_a-b64enc.Po
 
796
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='b64enc.c' object='libcommon_a-b64enc.o' libtool=no @AMDEPBACKSLASH@
 
797
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
798
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-b64enc.o `test -f 'b64enc.c' || echo '$(srcdir)/'`b64enc.c
 
799
 
 
800
libcommon_a-b64enc.obj: b64enc.c
 
801
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-b64enc.obj -MD -MP -MF $(DEPDIR)/libcommon_a-b64enc.Tpo -c -o libcommon_a-b64enc.obj `if test -f 'b64enc.c'; then $(CYGPATH_W) 'b64enc.c'; else $(CYGPATH_W) '$(srcdir)/b64enc.c'; fi`
 
802
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-b64enc.Tpo $(DEPDIR)/libcommon_a-b64enc.Po
 
803
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='b64enc.c' object='libcommon_a-b64enc.obj' libtool=no @AMDEPBACKSLASH@
 
804
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
805
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-b64enc.obj `if test -f 'b64enc.c'; then $(CYGPATH_W) 'b64enc.c'; else $(CYGPATH_W) '$(srcdir)/b64enc.c'; fi`
 
806
 
 
807
libcommon_a-convert.o: convert.c
 
808
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-convert.o -MD -MP -MF $(DEPDIR)/libcommon_a-convert.Tpo -c -o libcommon_a-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c
 
809
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-convert.Tpo $(DEPDIR)/libcommon_a-convert.Po
 
810
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='convert.c' object='libcommon_a-convert.o' libtool=no @AMDEPBACKSLASH@
 
811
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
812
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c
 
813
 
 
814
libcommon_a-convert.obj: convert.c
 
815
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-convert.obj -MD -MP -MF $(DEPDIR)/libcommon_a-convert.Tpo -c -o libcommon_a-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi`
 
816
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-convert.Tpo $(DEPDIR)/libcommon_a-convert.Po
 
817
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='convert.c' object='libcommon_a-convert.obj' libtool=no @AMDEPBACKSLASH@
 
818
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
819
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi`
 
820
 
 
821
libcommon_a-miscellaneous.o: miscellaneous.c
 
822
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-miscellaneous.o -MD -MP -MF $(DEPDIR)/libcommon_a-miscellaneous.Tpo -c -o libcommon_a-miscellaneous.o `test -f 'miscellaneous.c' || echo '$(srcdir)/'`miscellaneous.c
 
823
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-miscellaneous.Tpo $(DEPDIR)/libcommon_a-miscellaneous.Po
 
824
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='miscellaneous.c' object='libcommon_a-miscellaneous.o' libtool=no @AMDEPBACKSLASH@
 
825
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
826
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-miscellaneous.o `test -f 'miscellaneous.c' || echo '$(srcdir)/'`miscellaneous.c
 
827
 
 
828
libcommon_a-miscellaneous.obj: miscellaneous.c
 
829
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-miscellaneous.obj -MD -MP -MF $(DEPDIR)/libcommon_a-miscellaneous.Tpo -c -o libcommon_a-miscellaneous.obj `if test -f 'miscellaneous.c'; then $(CYGPATH_W) 'miscellaneous.c'; else $(CYGPATH_W) '$(srcdir)/miscellaneous.c'; fi`
 
830
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-miscellaneous.Tpo $(DEPDIR)/libcommon_a-miscellaneous.Po
 
831
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='miscellaneous.c' object='libcommon_a-miscellaneous.obj' libtool=no @AMDEPBACKSLASH@
 
832
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
833
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-miscellaneous.obj `if test -f 'miscellaneous.c'; then $(CYGPATH_W) 'miscellaneous.c'; else $(CYGPATH_W) '$(srcdir)/miscellaneous.c'; fi`
 
834
 
 
835
libcommon_a-xasprintf.o: xasprintf.c
 
836
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-xasprintf.o -MD -MP -MF $(DEPDIR)/libcommon_a-xasprintf.Tpo -c -o libcommon_a-xasprintf.o `test -f 'xasprintf.c' || echo '$(srcdir)/'`xasprintf.c
 
837
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-xasprintf.Tpo $(DEPDIR)/libcommon_a-xasprintf.Po
 
838
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='xasprintf.c' object='libcommon_a-xasprintf.o' libtool=no @AMDEPBACKSLASH@
 
839
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
840
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-xasprintf.o `test -f 'xasprintf.c' || echo '$(srcdir)/'`xasprintf.c
 
841
 
 
842
libcommon_a-xasprintf.obj: xasprintf.c
 
843
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-xasprintf.obj -MD -MP -MF $(DEPDIR)/libcommon_a-xasprintf.Tpo -c -o libcommon_a-xasprintf.obj `if test -f 'xasprintf.c'; then $(CYGPATH_W) 'xasprintf.c'; else $(CYGPATH_W) '$(srcdir)/xasprintf.c'; fi`
 
844
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-xasprintf.Tpo $(DEPDIR)/libcommon_a-xasprintf.Po
 
845
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='xasprintf.c' object='libcommon_a-xasprintf.obj' libtool=no @AMDEPBACKSLASH@
 
846
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
847
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-xasprintf.obj `if test -f 'xasprintf.c'; then $(CYGPATH_W) 'xasprintf.c'; else $(CYGPATH_W) '$(srcdir)/xasprintf.c'; fi`
 
848
 
 
849
libcommon_a-xreadline.o: xreadline.c
 
850
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-xreadline.o -MD -MP -MF $(DEPDIR)/libcommon_a-xreadline.Tpo -c -o libcommon_a-xreadline.o `test -f 'xreadline.c' || echo '$(srcdir)/'`xreadline.c
 
851
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-xreadline.Tpo $(DEPDIR)/libcommon_a-xreadline.Po
 
852
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='xreadline.c' object='libcommon_a-xreadline.o' libtool=no @AMDEPBACKSLASH@
 
853
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
854
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-xreadline.o `test -f 'xreadline.c' || echo '$(srcdir)/'`xreadline.c
 
855
 
 
856
libcommon_a-xreadline.obj: xreadline.c
 
857
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-xreadline.obj -MD -MP -MF $(DEPDIR)/libcommon_a-xreadline.Tpo -c -o libcommon_a-xreadline.obj `if test -f 'xreadline.c'; then $(CYGPATH_W) 'xreadline.c'; else $(CYGPATH_W) '$(srcdir)/xreadline.c'; fi`
 
858
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-xreadline.Tpo $(DEPDIR)/libcommon_a-xreadline.Po
 
859
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='xreadline.c' object='libcommon_a-xreadline.obj' libtool=no @AMDEPBACKSLASH@
 
860
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
861
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-xreadline.obj `if test -f 'xreadline.c'; then $(CYGPATH_W) 'xreadline.c'; else $(CYGPATH_W) '$(srcdir)/xreadline.c'; fi`
 
862
 
 
863
libcommon_a-membuf.o: membuf.c
 
864
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-membuf.o -MD -MP -MF $(DEPDIR)/libcommon_a-membuf.Tpo -c -o libcommon_a-membuf.o `test -f 'membuf.c' || echo '$(srcdir)/'`membuf.c
 
865
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-membuf.Tpo $(DEPDIR)/libcommon_a-membuf.Po
 
866
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='membuf.c' object='libcommon_a-membuf.o' libtool=no @AMDEPBACKSLASH@
 
867
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
868
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-membuf.o `test -f 'membuf.c' || echo '$(srcdir)/'`membuf.c
 
869
 
 
870
libcommon_a-membuf.obj: membuf.c
 
871
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-membuf.obj -MD -MP -MF $(DEPDIR)/libcommon_a-membuf.Tpo -c -o libcommon_a-membuf.obj `if test -f 'membuf.c'; then $(CYGPATH_W) 'membuf.c'; else $(CYGPATH_W) '$(srcdir)/membuf.c'; fi`
 
872
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-membuf.Tpo $(DEPDIR)/libcommon_a-membuf.Po
 
873
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='membuf.c' object='libcommon_a-membuf.obj' libtool=no @AMDEPBACKSLASH@
 
874
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
875
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-membuf.obj `if test -f 'membuf.c'; then $(CYGPATH_W) 'membuf.c'; else $(CYGPATH_W) '$(srcdir)/membuf.c'; fi`
 
876
 
 
877
libcommon_a-iobuf.o: iobuf.c
 
878
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-iobuf.o -MD -MP -MF $(DEPDIR)/libcommon_a-iobuf.Tpo -c -o libcommon_a-iobuf.o `test -f 'iobuf.c' || echo '$(srcdir)/'`iobuf.c
 
879
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-iobuf.Tpo $(DEPDIR)/libcommon_a-iobuf.Po
 
880
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='iobuf.c' object='libcommon_a-iobuf.o' libtool=no @AMDEPBACKSLASH@
 
881
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
882
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-iobuf.o `test -f 'iobuf.c' || echo '$(srcdir)/'`iobuf.c
 
883
 
 
884
libcommon_a-iobuf.obj: iobuf.c
 
885
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-iobuf.obj -MD -MP -MF $(DEPDIR)/libcommon_a-iobuf.Tpo -c -o libcommon_a-iobuf.obj `if test -f 'iobuf.c'; then $(CYGPATH_W) 'iobuf.c'; else $(CYGPATH_W) '$(srcdir)/iobuf.c'; fi`
 
886
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-iobuf.Tpo $(DEPDIR)/libcommon_a-iobuf.Po
 
887
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='iobuf.c' object='libcommon_a-iobuf.obj' libtool=no @AMDEPBACKSLASH@
 
888
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
889
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-iobuf.obj `if test -f 'iobuf.c'; then $(CYGPATH_W) 'iobuf.c'; else $(CYGPATH_W) '$(srcdir)/iobuf.c'; fi`
 
890
 
 
891
libcommon_a-ttyio.o: ttyio.c
 
892
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-ttyio.o -MD -MP -MF $(DEPDIR)/libcommon_a-ttyio.Tpo -c -o libcommon_a-ttyio.o `test -f 'ttyio.c' || echo '$(srcdir)/'`ttyio.c
 
893
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-ttyio.Tpo $(DEPDIR)/libcommon_a-ttyio.Po
 
894
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='ttyio.c' object='libcommon_a-ttyio.o' libtool=no @AMDEPBACKSLASH@
 
895
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
896
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-ttyio.o `test -f 'ttyio.c' || echo '$(srcdir)/'`ttyio.c
 
897
 
 
898
libcommon_a-ttyio.obj: ttyio.c
 
899
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-ttyio.obj -MD -MP -MF $(DEPDIR)/libcommon_a-ttyio.Tpo -c -o libcommon_a-ttyio.obj `if test -f 'ttyio.c'; then $(CYGPATH_W) 'ttyio.c'; else $(CYGPATH_W) '$(srcdir)/ttyio.c'; fi`
 
900
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-ttyio.Tpo $(DEPDIR)/libcommon_a-ttyio.Po
 
901
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='ttyio.c' object='libcommon_a-ttyio.obj' libtool=no @AMDEPBACKSLASH@
 
902
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
903
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-ttyio.obj `if test -f 'ttyio.c'; then $(CYGPATH_W) 'ttyio.c'; else $(CYGPATH_W) '$(srcdir)/ttyio.c'; fi`
 
904
 
 
905
libcommon_a-asshelp.o: asshelp.c
 
906
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-asshelp.o -MD -MP -MF $(DEPDIR)/libcommon_a-asshelp.Tpo -c -o libcommon_a-asshelp.o `test -f 'asshelp.c' || echo '$(srcdir)/'`asshelp.c
 
907
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-asshelp.Tpo $(DEPDIR)/libcommon_a-asshelp.Po
 
908
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='asshelp.c' object='libcommon_a-asshelp.o' libtool=no @AMDEPBACKSLASH@
 
909
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
910
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-asshelp.o `test -f 'asshelp.c' || echo '$(srcdir)/'`asshelp.c
 
911
 
 
912
libcommon_a-asshelp.obj: asshelp.c
 
913
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-asshelp.obj -MD -MP -MF $(DEPDIR)/libcommon_a-asshelp.Tpo -c -o libcommon_a-asshelp.obj `if test -f 'asshelp.c'; then $(CYGPATH_W) 'asshelp.c'; else $(CYGPATH_W) '$(srcdir)/asshelp.c'; fi`
 
914
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-asshelp.Tpo $(DEPDIR)/libcommon_a-asshelp.Po
 
915
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='asshelp.c' object='libcommon_a-asshelp.obj' libtool=no @AMDEPBACKSLASH@
 
916
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
917
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-asshelp.obj `if test -f 'asshelp.c'; then $(CYGPATH_W) 'asshelp.c'; else $(CYGPATH_W) '$(srcdir)/asshelp.c'; fi`
 
918
 
 
919
libcommon_a-exechelp.o: exechelp.c
 
920
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-exechelp.o -MD -MP -MF $(DEPDIR)/libcommon_a-exechelp.Tpo -c -o libcommon_a-exechelp.o `test -f 'exechelp.c' || echo '$(srcdir)/'`exechelp.c
 
921
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-exechelp.Tpo $(DEPDIR)/libcommon_a-exechelp.Po
 
922
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='exechelp.c' object='libcommon_a-exechelp.o' libtool=no @AMDEPBACKSLASH@
 
923
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
924
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-exechelp.o `test -f 'exechelp.c' || echo '$(srcdir)/'`exechelp.c
 
925
 
 
926
libcommon_a-exechelp.obj: exechelp.c
 
927
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-exechelp.obj -MD -MP -MF $(DEPDIR)/libcommon_a-exechelp.Tpo -c -o libcommon_a-exechelp.obj `if test -f 'exechelp.c'; then $(CYGPATH_W) 'exechelp.c'; else $(CYGPATH_W) '$(srcdir)/exechelp.c'; fi`
 
928
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-exechelp.Tpo $(DEPDIR)/libcommon_a-exechelp.Po
 
929
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='exechelp.c' object='libcommon_a-exechelp.obj' libtool=no @AMDEPBACKSLASH@
 
930
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
931
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-exechelp.obj `if test -f 'exechelp.c'; then $(CYGPATH_W) 'exechelp.c'; else $(CYGPATH_W) '$(srcdir)/exechelp.c'; fi`
 
932
 
 
933
libcommon_a-signal.o: signal.c
 
934
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-signal.o -MD -MP -MF $(DEPDIR)/libcommon_a-signal.Tpo -c -o libcommon_a-signal.o `test -f 'signal.c' || echo '$(srcdir)/'`signal.c
 
935
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-signal.Tpo $(DEPDIR)/libcommon_a-signal.Po
 
936
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='signal.c' object='libcommon_a-signal.o' libtool=no @AMDEPBACKSLASH@
 
937
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
938
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-signal.o `test -f 'signal.c' || echo '$(srcdir)/'`signal.c
 
939
 
 
940
libcommon_a-signal.obj: signal.c
 
941
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-signal.obj -MD -MP -MF $(DEPDIR)/libcommon_a-signal.Tpo -c -o libcommon_a-signal.obj `if test -f 'signal.c'; then $(CYGPATH_W) 'signal.c'; else $(CYGPATH_W) '$(srcdir)/signal.c'; fi`
 
942
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-signal.Tpo $(DEPDIR)/libcommon_a-signal.Po
 
943
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='signal.c' object='libcommon_a-signal.obj' libtool=no @AMDEPBACKSLASH@
 
944
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
945
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-signal.obj `if test -f 'signal.c'; then $(CYGPATH_W) 'signal.c'; else $(CYGPATH_W) '$(srcdir)/signal.c'; fi`
 
946
 
 
947
libcommon_a-estream.o: estream.c
 
948
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-estream.o -MD -MP -MF $(DEPDIR)/libcommon_a-estream.Tpo -c -o libcommon_a-estream.o `test -f 'estream.c' || echo '$(srcdir)/'`estream.c
 
949
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-estream.Tpo $(DEPDIR)/libcommon_a-estream.Po
 
950
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='estream.c' object='libcommon_a-estream.o' libtool=no @AMDEPBACKSLASH@
 
951
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
952
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-estream.o `test -f 'estream.c' || echo '$(srcdir)/'`estream.c
 
953
 
 
954
libcommon_a-estream.obj: estream.c
 
955
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-estream.obj -MD -MP -MF $(DEPDIR)/libcommon_a-estream.Tpo -c -o libcommon_a-estream.obj `if test -f 'estream.c'; then $(CYGPATH_W) 'estream.c'; else $(CYGPATH_W) '$(srcdir)/estream.c'; fi`
 
956
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-estream.Tpo $(DEPDIR)/libcommon_a-estream.Po
 
957
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='estream.c' object='libcommon_a-estream.obj' libtool=no @AMDEPBACKSLASH@
 
958
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
959
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-estream.obj `if test -f 'estream.c'; then $(CYGPATH_W) 'estream.c'; else $(CYGPATH_W) '$(srcdir)/estream.c'; fi`
 
960
 
 
961
libcommon_a-estream-printf.o: estream-printf.c
 
962
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-estream-printf.o -MD -MP -MF $(DEPDIR)/libcommon_a-estream-printf.Tpo -c -o libcommon_a-estream-printf.o `test -f 'estream-printf.c' || echo '$(srcdir)/'`estream-printf.c
 
963
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-estream-printf.Tpo $(DEPDIR)/libcommon_a-estream-printf.Po
 
964
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='estream-printf.c' object='libcommon_a-estream-printf.o' libtool=no @AMDEPBACKSLASH@
 
965
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
966
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-estream-printf.o `test -f 'estream-printf.c' || echo '$(srcdir)/'`estream-printf.c
 
967
 
 
968
libcommon_a-estream-printf.obj: estream-printf.c
 
969
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-estream-printf.obj -MD -MP -MF $(DEPDIR)/libcommon_a-estream-printf.Tpo -c -o libcommon_a-estream-printf.obj `if test -f 'estream-printf.c'; then $(CYGPATH_W) 'estream-printf.c'; else $(CYGPATH_W) '$(srcdir)/estream-printf.c'; fi`
 
970
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-estream-printf.Tpo $(DEPDIR)/libcommon_a-estream-printf.Po
 
971
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='estream-printf.c' object='libcommon_a-estream-printf.obj' libtool=no @AMDEPBACKSLASH@
 
972
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
973
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-estream-printf.obj `if test -f 'estream-printf.c'; then $(CYGPATH_W) 'estream-printf.c'; else $(CYGPATH_W) '$(srcdir)/estream-printf.c'; fi`
 
974
 
 
975
libcommon_a-audit.o: audit.c
 
976
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-audit.o -MD -MP -MF $(DEPDIR)/libcommon_a-audit.Tpo -c -o libcommon_a-audit.o `test -f 'audit.c' || echo '$(srcdir)/'`audit.c
 
977
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-audit.Tpo $(DEPDIR)/libcommon_a-audit.Po
 
978
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='audit.c' object='libcommon_a-audit.o' libtool=no @AMDEPBACKSLASH@
 
979
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
980
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-audit.o `test -f 'audit.c' || echo '$(srcdir)/'`audit.c
 
981
 
 
982
libcommon_a-audit.obj: audit.c
 
983
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-audit.obj -MD -MP -MF $(DEPDIR)/libcommon_a-audit.Tpo -c -o libcommon_a-audit.obj `if test -f 'audit.c'; then $(CYGPATH_W) 'audit.c'; else $(CYGPATH_W) '$(srcdir)/audit.c'; fi`
 
984
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-audit.Tpo $(DEPDIR)/libcommon_a-audit.Po
 
985
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='audit.c' object='libcommon_a-audit.obj' libtool=no @AMDEPBACKSLASH@
 
986
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
987
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-audit.obj `if test -f 'audit.c'; then $(CYGPATH_W) 'audit.c'; else $(CYGPATH_W) '$(srcdir)/audit.c'; fi`
 
988
 
 
989
libcommon_a-dns-cert.o: dns-cert.c
 
990
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-dns-cert.o -MD -MP -MF $(DEPDIR)/libcommon_a-dns-cert.Tpo -c -o libcommon_a-dns-cert.o `test -f 'dns-cert.c' || echo '$(srcdir)/'`dns-cert.c
 
991
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-dns-cert.Tpo $(DEPDIR)/libcommon_a-dns-cert.Po
 
992
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='dns-cert.c' object='libcommon_a-dns-cert.o' libtool=no @AMDEPBACKSLASH@
 
993
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
994
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-dns-cert.o `test -f 'dns-cert.c' || echo '$(srcdir)/'`dns-cert.c
 
995
 
 
996
libcommon_a-dns-cert.obj: dns-cert.c
 
997
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-dns-cert.obj -MD -MP -MF $(DEPDIR)/libcommon_a-dns-cert.Tpo -c -o libcommon_a-dns-cert.obj `if test -f 'dns-cert.c'; then $(CYGPATH_W) 'dns-cert.c'; else $(CYGPATH_W) '$(srcdir)/dns-cert.c'; fi`
 
998
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-dns-cert.Tpo $(DEPDIR)/libcommon_a-dns-cert.Po
 
999
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='dns-cert.c' object='libcommon_a-dns-cert.obj' libtool=no @AMDEPBACKSLASH@
 
1000
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1001
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-dns-cert.obj `if test -f 'dns-cert.c'; then $(CYGPATH_W) 'dns-cert.c'; else $(CYGPATH_W) '$(srcdir)/dns-cert.c'; fi`
 
1002
 
 
1003
libcommon_a-pka.o: pka.c
 
1004
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-pka.o -MD -MP -MF $(DEPDIR)/libcommon_a-pka.Tpo -c -o libcommon_a-pka.o `test -f 'pka.c' || echo '$(srcdir)/'`pka.c
 
1005
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-pka.Tpo $(DEPDIR)/libcommon_a-pka.Po
 
1006
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='pka.c' object='libcommon_a-pka.o' libtool=no @AMDEPBACKSLASH@
 
1007
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1008
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-pka.o `test -f 'pka.c' || echo '$(srcdir)/'`pka.c
 
1009
 
 
1010
libcommon_a-pka.obj: pka.c
 
1011
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-pka.obj -MD -MP -MF $(DEPDIR)/libcommon_a-pka.Tpo -c -o libcommon_a-pka.obj `if test -f 'pka.c'; then $(CYGPATH_W) 'pka.c'; else $(CYGPATH_W) '$(srcdir)/pka.c'; fi`
 
1012
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-pka.Tpo $(DEPDIR)/libcommon_a-pka.Po
 
1013
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='pka.c' object='libcommon_a-pka.obj' libtool=no @AMDEPBACKSLASH@
 
1014
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1015
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-pka.obj `if test -f 'pka.c'; then $(CYGPATH_W) 'pka.c'; else $(CYGPATH_W) '$(srcdir)/pka.c'; fi`
 
1016
 
 
1017
libcommon_a-http.o: http.c
 
1018
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-http.o -MD -MP -MF $(DEPDIR)/libcommon_a-http.Tpo -c -o libcommon_a-http.o `test -f 'http.c' || echo '$(srcdir)/'`http.c
 
1019
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-http.Tpo $(DEPDIR)/libcommon_a-http.Po
 
1020
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='http.c' object='libcommon_a-http.o' libtool=no @AMDEPBACKSLASH@
 
1021
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1022
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-http.o `test -f 'http.c' || echo '$(srcdir)/'`http.c
 
1023
 
 
1024
libcommon_a-http.obj: http.c
 
1025
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-http.obj -MD -MP -MF $(DEPDIR)/libcommon_a-http.Tpo -c -o libcommon_a-http.obj `if test -f 'http.c'; then $(CYGPATH_W) 'http.c'; else $(CYGPATH_W) '$(srcdir)/http.c'; fi`
 
1026
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-http.Tpo $(DEPDIR)/libcommon_a-http.Po
 
1027
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='http.c' object='libcommon_a-http.obj' libtool=no @AMDEPBACKSLASH@
 
1028
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1029
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-http.obj `if test -f 'http.c'; then $(CYGPATH_W) 'http.c'; else $(CYGPATH_W) '$(srcdir)/http.c'; fi`
 
1030
 
 
1031
libcommon_a-localename.o: localename.c
 
1032
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-localename.o -MD -MP -MF $(DEPDIR)/libcommon_a-localename.Tpo -c -o libcommon_a-localename.o `test -f 'localename.c' || echo '$(srcdir)/'`localename.c
 
1033
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-localename.Tpo $(DEPDIR)/libcommon_a-localename.Po
 
1034
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='localename.c' object='libcommon_a-localename.o' libtool=no @AMDEPBACKSLASH@
 
1035
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1036
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-localename.o `test -f 'localename.c' || echo '$(srcdir)/'`localename.c
 
1037
 
 
1038
libcommon_a-localename.obj: localename.c
 
1039
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-localename.obj -MD -MP -MF $(DEPDIR)/libcommon_a-localename.Tpo -c -o libcommon_a-localename.obj `if test -f 'localename.c'; then $(CYGPATH_W) 'localename.c'; else $(CYGPATH_W) '$(srcdir)/localename.c'; fi`
 
1040
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-localename.Tpo $(DEPDIR)/libcommon_a-localename.Po
 
1041
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='localename.c' object='libcommon_a-localename.obj' libtool=no @AMDEPBACKSLASH@
 
1042
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1043
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-localename.obj `if test -f 'localename.c'; then $(CYGPATH_W) 'localename.c'; else $(CYGPATH_W) '$(srcdir)/localename.c'; fi`
 
1044
 
 
1045
libcommon_a-helpfile.o: helpfile.c
 
1046
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-helpfile.o -MD -MP -MF $(DEPDIR)/libcommon_a-helpfile.Tpo -c -o libcommon_a-helpfile.o `test -f 'helpfile.c' || echo '$(srcdir)/'`helpfile.c
 
1047
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-helpfile.Tpo $(DEPDIR)/libcommon_a-helpfile.Po
 
1048
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='helpfile.c' object='libcommon_a-helpfile.o' libtool=no @AMDEPBACKSLASH@
 
1049
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1050
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-helpfile.o `test -f 'helpfile.c' || echo '$(srcdir)/'`helpfile.c
 
1051
 
 
1052
libcommon_a-helpfile.obj: helpfile.c
 
1053
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-helpfile.obj -MD -MP -MF $(DEPDIR)/libcommon_a-helpfile.Tpo -c -o libcommon_a-helpfile.obj `if test -f 'helpfile.c'; then $(CYGPATH_W) 'helpfile.c'; else $(CYGPATH_W) '$(srcdir)/helpfile.c'; fi`
 
1054
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-helpfile.Tpo $(DEPDIR)/libcommon_a-helpfile.Po
 
1055
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='helpfile.c' object='libcommon_a-helpfile.obj' libtool=no @AMDEPBACKSLASH@
 
1056
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1057
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-helpfile.obj `if test -f 'helpfile.c'; then $(CYGPATH_W) 'helpfile.c'; else $(CYGPATH_W) '$(srcdir)/helpfile.c'; fi`
 
1058
 
 
1059
libcommon_a-srv.o: srv.c
 
1060
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-srv.o -MD -MP -MF $(DEPDIR)/libcommon_a-srv.Tpo -c -o libcommon_a-srv.o `test -f 'srv.c' || echo '$(srcdir)/'`srv.c
 
1061
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-srv.Tpo $(DEPDIR)/libcommon_a-srv.Po
 
1062
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='srv.c' object='libcommon_a-srv.o' libtool=no @AMDEPBACKSLASH@
 
1063
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1064
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-srv.o `test -f 'srv.c' || echo '$(srcdir)/'`srv.c
 
1065
 
 
1066
libcommon_a-srv.obj: srv.c
 
1067
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -MT libcommon_a-srv.obj -MD -MP -MF $(DEPDIR)/libcommon_a-srv.Tpo -c -o libcommon_a-srv.obj `if test -f 'srv.c'; then $(CYGPATH_W) 'srv.c'; else $(CYGPATH_W) '$(srcdir)/srv.c'; fi`
 
1068
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommon_a-srv.Tpo $(DEPDIR)/libcommon_a-srv.Po
 
1069
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='srv.c' object='libcommon_a-srv.obj' libtool=no @AMDEPBACKSLASH@
 
1070
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1071
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommon_a_CFLAGS) $(CFLAGS) -c -o libcommon_a-srv.obj `if test -f 'srv.c'; then $(CYGPATH_W) 'srv.c'; else $(CYGPATH_W) '$(srcdir)/srv.c'; fi`
 
1072
 
 
1073
libcommonpth_a-i18n.o: i18n.c
 
1074
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-i18n.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-i18n.Tpo -c -o libcommonpth_a-i18n.o `test -f 'i18n.c' || echo '$(srcdir)/'`i18n.c
 
1075
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-i18n.Tpo $(DEPDIR)/libcommonpth_a-i18n.Po
 
1076
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='i18n.c' object='libcommonpth_a-i18n.o' libtool=no @AMDEPBACKSLASH@
 
1077
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1078
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-i18n.o `test -f 'i18n.c' || echo '$(srcdir)/'`i18n.c
 
1079
 
 
1080
libcommonpth_a-i18n.obj: i18n.c
 
1081
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-i18n.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-i18n.Tpo -c -o libcommonpth_a-i18n.obj `if test -f 'i18n.c'; then $(CYGPATH_W) 'i18n.c'; else $(CYGPATH_W) '$(srcdir)/i18n.c'; fi`
 
1082
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-i18n.Tpo $(DEPDIR)/libcommonpth_a-i18n.Po
 
1083
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='i18n.c' object='libcommonpth_a-i18n.obj' libtool=no @AMDEPBACKSLASH@
 
1084
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1085
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-i18n.obj `if test -f 'i18n.c'; then $(CYGPATH_W) 'i18n.c'; else $(CYGPATH_W) '$(srcdir)/i18n.c'; fi`
 
1086
 
 
1087
libcommonpth_a-status.o: status.c
 
1088
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-status.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-status.Tpo -c -o libcommonpth_a-status.o `test -f 'status.c' || echo '$(srcdir)/'`status.c
 
1089
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-status.Tpo $(DEPDIR)/libcommonpth_a-status.Po
 
1090
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='status.c' object='libcommonpth_a-status.o' libtool=no @AMDEPBACKSLASH@
 
1091
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1092
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-status.o `test -f 'status.c' || echo '$(srcdir)/'`status.c
 
1093
 
 
1094
libcommonpth_a-status.obj: status.c
 
1095
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-status.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-status.Tpo -c -o libcommonpth_a-status.obj `if test -f 'status.c'; then $(CYGPATH_W) 'status.c'; else $(CYGPATH_W) '$(srcdir)/status.c'; fi`
 
1096
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-status.Tpo $(DEPDIR)/libcommonpth_a-status.Po
 
1097
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='status.c' object='libcommonpth_a-status.obj' libtool=no @AMDEPBACKSLASH@
 
1098
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1099
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-status.obj `if test -f 'status.c'; then $(CYGPATH_W) 'status.c'; else $(CYGPATH_W) '$(srcdir)/status.c'; fi`
 
1100
 
 
1101
libcommonpth_a-tlv.o: tlv.c
 
1102
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-tlv.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-tlv.Tpo -c -o libcommonpth_a-tlv.o `test -f 'tlv.c' || echo '$(srcdir)/'`tlv.c
 
1103
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-tlv.Tpo $(DEPDIR)/libcommonpth_a-tlv.Po
 
1104
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tlv.c' object='libcommonpth_a-tlv.o' libtool=no @AMDEPBACKSLASH@
 
1105
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1106
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-tlv.o `test -f 'tlv.c' || echo '$(srcdir)/'`tlv.c
 
1107
 
 
1108
libcommonpth_a-tlv.obj: tlv.c
 
1109
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-tlv.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-tlv.Tpo -c -o libcommonpth_a-tlv.obj `if test -f 'tlv.c'; then $(CYGPATH_W) 'tlv.c'; else $(CYGPATH_W) '$(srcdir)/tlv.c'; fi`
 
1110
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-tlv.Tpo $(DEPDIR)/libcommonpth_a-tlv.Po
 
1111
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tlv.c' object='libcommonpth_a-tlv.obj' libtool=no @AMDEPBACKSLASH@
 
1112
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1113
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-tlv.obj `if test -f 'tlv.c'; then $(CYGPATH_W) 'tlv.c'; else $(CYGPATH_W) '$(srcdir)/tlv.c'; fi`
 
1114
 
 
1115
libcommonpth_a-init.o: init.c
 
1116
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-init.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-init.Tpo -c -o libcommonpth_a-init.o `test -f 'init.c' || echo '$(srcdir)/'`init.c
 
1117
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-init.Tpo $(DEPDIR)/libcommonpth_a-init.Po
 
1118
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='init.c' object='libcommonpth_a-init.o' libtool=no @AMDEPBACKSLASH@
 
1119
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1120
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-init.o `test -f 'init.c' || echo '$(srcdir)/'`init.c
 
1121
 
 
1122
libcommonpth_a-init.obj: init.c
 
1123
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-init.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-init.Tpo -c -o libcommonpth_a-init.obj `if test -f 'init.c'; then $(CYGPATH_W) 'init.c'; else $(CYGPATH_W) '$(srcdir)/init.c'; fi`
 
1124
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-init.Tpo $(DEPDIR)/libcommonpth_a-init.Po
 
1125
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='init.c' object='libcommonpth_a-init.obj' libtool=no @AMDEPBACKSLASH@
 
1126
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1127
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-init.obj `if test -f 'init.c'; then $(CYGPATH_W) 'init.c'; else $(CYGPATH_W) '$(srcdir)/init.c'; fi`
 
1128
 
 
1129
libcommonpth_a-sexputil.o: sexputil.c
 
1130
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-sexputil.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-sexputil.Tpo -c -o libcommonpth_a-sexputil.o `test -f 'sexputil.c' || echo '$(srcdir)/'`sexputil.c
 
1131
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-sexputil.Tpo $(DEPDIR)/libcommonpth_a-sexputil.Po
 
1132
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sexputil.c' object='libcommonpth_a-sexputil.o' libtool=no @AMDEPBACKSLASH@
 
1133
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1134
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-sexputil.o `test -f 'sexputil.c' || echo '$(srcdir)/'`sexputil.c
 
1135
 
 
1136
libcommonpth_a-sexputil.obj: sexputil.c
 
1137
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-sexputil.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-sexputil.Tpo -c -o libcommonpth_a-sexputil.obj `if test -f 'sexputil.c'; then $(CYGPATH_W) 'sexputil.c'; else $(CYGPATH_W) '$(srcdir)/sexputil.c'; fi`
 
1138
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-sexputil.Tpo $(DEPDIR)/libcommonpth_a-sexputil.Po
 
1139
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sexputil.c' object='libcommonpth_a-sexputil.obj' libtool=no @AMDEPBACKSLASH@
 
1140
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1141
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-sexputil.obj `if test -f 'sexputil.c'; then $(CYGPATH_W) 'sexputil.c'; else $(CYGPATH_W) '$(srcdir)/sexputil.c'; fi`
 
1142
 
 
1143
libcommonpth_a-sysutils.o: sysutils.c
 
1144
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-sysutils.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-sysutils.Tpo -c -o libcommonpth_a-sysutils.o `test -f 'sysutils.c' || echo '$(srcdir)/'`sysutils.c
 
1145
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-sysutils.Tpo $(DEPDIR)/libcommonpth_a-sysutils.Po
 
1146
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sysutils.c' object='libcommonpth_a-sysutils.o' libtool=no @AMDEPBACKSLASH@
 
1147
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1148
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-sysutils.o `test -f 'sysutils.c' || echo '$(srcdir)/'`sysutils.c
 
1149
 
 
1150
libcommonpth_a-sysutils.obj: sysutils.c
 
1151
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-sysutils.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-sysutils.Tpo -c -o libcommonpth_a-sysutils.obj `if test -f 'sysutils.c'; then $(CYGPATH_W) 'sysutils.c'; else $(CYGPATH_W) '$(srcdir)/sysutils.c'; fi`
 
1152
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-sysutils.Tpo $(DEPDIR)/libcommonpth_a-sysutils.Po
 
1153
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sysutils.c' object='libcommonpth_a-sysutils.obj' libtool=no @AMDEPBACKSLASH@
 
1154
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1155
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-sysutils.obj `if test -f 'sysutils.c'; then $(CYGPATH_W) 'sysutils.c'; else $(CYGPATH_W) '$(srcdir)/sysutils.c'; fi`
 
1156
 
 
1157
libcommonpth_a-homedir.o: homedir.c
 
1158
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-homedir.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-homedir.Tpo -c -o libcommonpth_a-homedir.o `test -f 'homedir.c' || echo '$(srcdir)/'`homedir.c
 
1159
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-homedir.Tpo $(DEPDIR)/libcommonpth_a-homedir.Po
 
1160
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='homedir.c' object='libcommonpth_a-homedir.o' libtool=no @AMDEPBACKSLASH@
 
1161
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1162
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-homedir.o `test -f 'homedir.c' || echo '$(srcdir)/'`homedir.c
 
1163
 
 
1164
libcommonpth_a-homedir.obj: homedir.c
 
1165
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-homedir.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-homedir.Tpo -c -o libcommonpth_a-homedir.obj `if test -f 'homedir.c'; then $(CYGPATH_W) 'homedir.c'; else $(CYGPATH_W) '$(srcdir)/homedir.c'; fi`
 
1166
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-homedir.Tpo $(DEPDIR)/libcommonpth_a-homedir.Po
 
1167
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='homedir.c' object='libcommonpth_a-homedir.obj' libtool=no @AMDEPBACKSLASH@
 
1168
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1169
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-homedir.obj `if test -f 'homedir.c'; then $(CYGPATH_W) 'homedir.c'; else $(CYGPATH_W) '$(srcdir)/homedir.c'; fi`
 
1170
 
 
1171
libcommonpth_a-gettime.o: gettime.c
 
1172
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-gettime.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-gettime.Tpo -c -o libcommonpth_a-gettime.o `test -f 'gettime.c' || echo '$(srcdir)/'`gettime.c
 
1173
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-gettime.Tpo $(DEPDIR)/libcommonpth_a-gettime.Po
 
1174
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gettime.c' object='libcommonpth_a-gettime.o' libtool=no @AMDEPBACKSLASH@
 
1175
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1176
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-gettime.o `test -f 'gettime.c' || echo '$(srcdir)/'`gettime.c
 
1177
 
 
1178
libcommonpth_a-gettime.obj: gettime.c
 
1179
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-gettime.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-gettime.Tpo -c -o libcommonpth_a-gettime.obj `if test -f 'gettime.c'; then $(CYGPATH_W) 'gettime.c'; else $(CYGPATH_W) '$(srcdir)/gettime.c'; fi`
 
1180
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-gettime.Tpo $(DEPDIR)/libcommonpth_a-gettime.Po
 
1181
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gettime.c' object='libcommonpth_a-gettime.obj' libtool=no @AMDEPBACKSLASH@
 
1182
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1183
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-gettime.obj `if test -f 'gettime.c'; then $(CYGPATH_W) 'gettime.c'; else $(CYGPATH_W) '$(srcdir)/gettime.c'; fi`
 
1184
 
 
1185
libcommonpth_a-yesno.o: yesno.c
 
1186
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-yesno.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-yesno.Tpo -c -o libcommonpth_a-yesno.o `test -f 'yesno.c' || echo '$(srcdir)/'`yesno.c
 
1187
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-yesno.Tpo $(DEPDIR)/libcommonpth_a-yesno.Po
 
1188
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='yesno.c' object='libcommonpth_a-yesno.o' libtool=no @AMDEPBACKSLASH@
 
1189
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1190
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-yesno.o `test -f 'yesno.c' || echo '$(srcdir)/'`yesno.c
 
1191
 
 
1192
libcommonpth_a-yesno.obj: yesno.c
 
1193
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-yesno.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-yesno.Tpo -c -o libcommonpth_a-yesno.obj `if test -f 'yesno.c'; then $(CYGPATH_W) 'yesno.c'; else $(CYGPATH_W) '$(srcdir)/yesno.c'; fi`
 
1194
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-yesno.Tpo $(DEPDIR)/libcommonpth_a-yesno.Po
 
1195
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='yesno.c' object='libcommonpth_a-yesno.obj' libtool=no @AMDEPBACKSLASH@
 
1196
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1197
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-yesno.obj `if test -f 'yesno.c'; then $(CYGPATH_W) 'yesno.c'; else $(CYGPATH_W) '$(srcdir)/yesno.c'; fi`
 
1198
 
 
1199
libcommonpth_a-b64enc.o: b64enc.c
 
1200
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-b64enc.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-b64enc.Tpo -c -o libcommonpth_a-b64enc.o `test -f 'b64enc.c' || echo '$(srcdir)/'`b64enc.c
 
1201
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-b64enc.Tpo $(DEPDIR)/libcommonpth_a-b64enc.Po
 
1202
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='b64enc.c' object='libcommonpth_a-b64enc.o' libtool=no @AMDEPBACKSLASH@
 
1203
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1204
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-b64enc.o `test -f 'b64enc.c' || echo '$(srcdir)/'`b64enc.c
 
1205
 
 
1206
libcommonpth_a-b64enc.obj: b64enc.c
 
1207
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-b64enc.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-b64enc.Tpo -c -o libcommonpth_a-b64enc.obj `if test -f 'b64enc.c'; then $(CYGPATH_W) 'b64enc.c'; else $(CYGPATH_W) '$(srcdir)/b64enc.c'; fi`
 
1208
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-b64enc.Tpo $(DEPDIR)/libcommonpth_a-b64enc.Po
 
1209
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='b64enc.c' object='libcommonpth_a-b64enc.obj' libtool=no @AMDEPBACKSLASH@
 
1210
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1211
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-b64enc.obj `if test -f 'b64enc.c'; then $(CYGPATH_W) 'b64enc.c'; else $(CYGPATH_W) '$(srcdir)/b64enc.c'; fi`
 
1212
 
 
1213
libcommonpth_a-convert.o: convert.c
 
1214
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-convert.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-convert.Tpo -c -o libcommonpth_a-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c
 
1215
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-convert.Tpo $(DEPDIR)/libcommonpth_a-convert.Po
 
1216
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='convert.c' object='libcommonpth_a-convert.o' libtool=no @AMDEPBACKSLASH@
 
1217
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1218
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c
 
1219
 
 
1220
libcommonpth_a-convert.obj: convert.c
 
1221
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-convert.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-convert.Tpo -c -o libcommonpth_a-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi`
 
1222
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-convert.Tpo $(DEPDIR)/libcommonpth_a-convert.Po
 
1223
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='convert.c' object='libcommonpth_a-convert.obj' libtool=no @AMDEPBACKSLASH@
 
1224
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1225
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi`
 
1226
 
 
1227
libcommonpth_a-miscellaneous.o: miscellaneous.c
 
1228
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-miscellaneous.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-miscellaneous.Tpo -c -o libcommonpth_a-miscellaneous.o `test -f 'miscellaneous.c' || echo '$(srcdir)/'`miscellaneous.c
 
1229
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-miscellaneous.Tpo $(DEPDIR)/libcommonpth_a-miscellaneous.Po
 
1230
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='miscellaneous.c' object='libcommonpth_a-miscellaneous.o' libtool=no @AMDEPBACKSLASH@
 
1231
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1232
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-miscellaneous.o `test -f 'miscellaneous.c' || echo '$(srcdir)/'`miscellaneous.c
 
1233
 
 
1234
libcommonpth_a-miscellaneous.obj: miscellaneous.c
 
1235
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-miscellaneous.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-miscellaneous.Tpo -c -o libcommonpth_a-miscellaneous.obj `if test -f 'miscellaneous.c'; then $(CYGPATH_W) 'miscellaneous.c'; else $(CYGPATH_W) '$(srcdir)/miscellaneous.c'; fi`
 
1236
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-miscellaneous.Tpo $(DEPDIR)/libcommonpth_a-miscellaneous.Po
 
1237
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='miscellaneous.c' object='libcommonpth_a-miscellaneous.obj' libtool=no @AMDEPBACKSLASH@
 
1238
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1239
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-miscellaneous.obj `if test -f 'miscellaneous.c'; then $(CYGPATH_W) 'miscellaneous.c'; else $(CYGPATH_W) '$(srcdir)/miscellaneous.c'; fi`
 
1240
 
 
1241
libcommonpth_a-xasprintf.o: xasprintf.c
 
1242
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-xasprintf.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-xasprintf.Tpo -c -o libcommonpth_a-xasprintf.o `test -f 'xasprintf.c' || echo '$(srcdir)/'`xasprintf.c
 
1243
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-xasprintf.Tpo $(DEPDIR)/libcommonpth_a-xasprintf.Po
 
1244
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='xasprintf.c' object='libcommonpth_a-xasprintf.o' libtool=no @AMDEPBACKSLASH@
 
1245
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1246
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-xasprintf.o `test -f 'xasprintf.c' || echo '$(srcdir)/'`xasprintf.c
 
1247
 
 
1248
libcommonpth_a-xasprintf.obj: xasprintf.c
 
1249
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-xasprintf.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-xasprintf.Tpo -c -o libcommonpth_a-xasprintf.obj `if test -f 'xasprintf.c'; then $(CYGPATH_W) 'xasprintf.c'; else $(CYGPATH_W) '$(srcdir)/xasprintf.c'; fi`
 
1250
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-xasprintf.Tpo $(DEPDIR)/libcommonpth_a-xasprintf.Po
 
1251
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='xasprintf.c' object='libcommonpth_a-xasprintf.obj' libtool=no @AMDEPBACKSLASH@
 
1252
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1253
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-xasprintf.obj `if test -f 'xasprintf.c'; then $(CYGPATH_W) 'xasprintf.c'; else $(CYGPATH_W) '$(srcdir)/xasprintf.c'; fi`
 
1254
 
 
1255
libcommonpth_a-xreadline.o: xreadline.c
 
1256
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-xreadline.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-xreadline.Tpo -c -o libcommonpth_a-xreadline.o `test -f 'xreadline.c' || echo '$(srcdir)/'`xreadline.c
 
1257
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-xreadline.Tpo $(DEPDIR)/libcommonpth_a-xreadline.Po
 
1258
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='xreadline.c' object='libcommonpth_a-xreadline.o' libtool=no @AMDEPBACKSLASH@
 
1259
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1260
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-xreadline.o `test -f 'xreadline.c' || echo '$(srcdir)/'`xreadline.c
 
1261
 
 
1262
libcommonpth_a-xreadline.obj: xreadline.c
 
1263
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-xreadline.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-xreadline.Tpo -c -o libcommonpth_a-xreadline.obj `if test -f 'xreadline.c'; then $(CYGPATH_W) 'xreadline.c'; else $(CYGPATH_W) '$(srcdir)/xreadline.c'; fi`
 
1264
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-xreadline.Tpo $(DEPDIR)/libcommonpth_a-xreadline.Po
 
1265
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='xreadline.c' object='libcommonpth_a-xreadline.obj' libtool=no @AMDEPBACKSLASH@
 
1266
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1267
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-xreadline.obj `if test -f 'xreadline.c'; then $(CYGPATH_W) 'xreadline.c'; else $(CYGPATH_W) '$(srcdir)/xreadline.c'; fi`
 
1268
 
 
1269
libcommonpth_a-membuf.o: membuf.c
 
1270
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-membuf.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-membuf.Tpo -c -o libcommonpth_a-membuf.o `test -f 'membuf.c' || echo '$(srcdir)/'`membuf.c
 
1271
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-membuf.Tpo $(DEPDIR)/libcommonpth_a-membuf.Po
 
1272
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='membuf.c' object='libcommonpth_a-membuf.o' libtool=no @AMDEPBACKSLASH@
 
1273
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1274
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-membuf.o `test -f 'membuf.c' || echo '$(srcdir)/'`membuf.c
 
1275
 
 
1276
libcommonpth_a-membuf.obj: membuf.c
 
1277
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-membuf.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-membuf.Tpo -c -o libcommonpth_a-membuf.obj `if test -f 'membuf.c'; then $(CYGPATH_W) 'membuf.c'; else $(CYGPATH_W) '$(srcdir)/membuf.c'; fi`
 
1278
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-membuf.Tpo $(DEPDIR)/libcommonpth_a-membuf.Po
 
1279
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='membuf.c' object='libcommonpth_a-membuf.obj' libtool=no @AMDEPBACKSLASH@
 
1280
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1281
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-membuf.obj `if test -f 'membuf.c'; then $(CYGPATH_W) 'membuf.c'; else $(CYGPATH_W) '$(srcdir)/membuf.c'; fi`
 
1282
 
 
1283
libcommonpth_a-iobuf.o: iobuf.c
 
1284
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-iobuf.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-iobuf.Tpo -c -o libcommonpth_a-iobuf.o `test -f 'iobuf.c' || echo '$(srcdir)/'`iobuf.c
 
1285
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-iobuf.Tpo $(DEPDIR)/libcommonpth_a-iobuf.Po
 
1286
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='iobuf.c' object='libcommonpth_a-iobuf.o' libtool=no @AMDEPBACKSLASH@
 
1287
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1288
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-iobuf.o `test -f 'iobuf.c' || echo '$(srcdir)/'`iobuf.c
 
1289
 
 
1290
libcommonpth_a-iobuf.obj: iobuf.c
 
1291
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-iobuf.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-iobuf.Tpo -c -o libcommonpth_a-iobuf.obj `if test -f 'iobuf.c'; then $(CYGPATH_W) 'iobuf.c'; else $(CYGPATH_W) '$(srcdir)/iobuf.c'; fi`
 
1292
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-iobuf.Tpo $(DEPDIR)/libcommonpth_a-iobuf.Po
 
1293
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='iobuf.c' object='libcommonpth_a-iobuf.obj' libtool=no @AMDEPBACKSLASH@
 
1294
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1295
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-iobuf.obj `if test -f 'iobuf.c'; then $(CYGPATH_W) 'iobuf.c'; else $(CYGPATH_W) '$(srcdir)/iobuf.c'; fi`
 
1296
 
 
1297
libcommonpth_a-ttyio.o: ttyio.c
 
1298
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-ttyio.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-ttyio.Tpo -c -o libcommonpth_a-ttyio.o `test -f 'ttyio.c' || echo '$(srcdir)/'`ttyio.c
 
1299
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-ttyio.Tpo $(DEPDIR)/libcommonpth_a-ttyio.Po
 
1300
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='ttyio.c' object='libcommonpth_a-ttyio.o' libtool=no @AMDEPBACKSLASH@
 
1301
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1302
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-ttyio.o `test -f 'ttyio.c' || echo '$(srcdir)/'`ttyio.c
 
1303
 
 
1304
libcommonpth_a-ttyio.obj: ttyio.c
 
1305
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-ttyio.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-ttyio.Tpo -c -o libcommonpth_a-ttyio.obj `if test -f 'ttyio.c'; then $(CYGPATH_W) 'ttyio.c'; else $(CYGPATH_W) '$(srcdir)/ttyio.c'; fi`
 
1306
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-ttyio.Tpo $(DEPDIR)/libcommonpth_a-ttyio.Po
 
1307
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='ttyio.c' object='libcommonpth_a-ttyio.obj' libtool=no @AMDEPBACKSLASH@
 
1308
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1309
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-ttyio.obj `if test -f 'ttyio.c'; then $(CYGPATH_W) 'ttyio.c'; else $(CYGPATH_W) '$(srcdir)/ttyio.c'; fi`
 
1310
 
 
1311
libcommonpth_a-asshelp.o: asshelp.c
 
1312
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-asshelp.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-asshelp.Tpo -c -o libcommonpth_a-asshelp.o `test -f 'asshelp.c' || echo '$(srcdir)/'`asshelp.c
 
1313
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-asshelp.Tpo $(DEPDIR)/libcommonpth_a-asshelp.Po
 
1314
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='asshelp.c' object='libcommonpth_a-asshelp.o' libtool=no @AMDEPBACKSLASH@
 
1315
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1316
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-asshelp.o `test -f 'asshelp.c' || echo '$(srcdir)/'`asshelp.c
 
1317
 
 
1318
libcommonpth_a-asshelp.obj: asshelp.c
 
1319
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-asshelp.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-asshelp.Tpo -c -o libcommonpth_a-asshelp.obj `if test -f 'asshelp.c'; then $(CYGPATH_W) 'asshelp.c'; else $(CYGPATH_W) '$(srcdir)/asshelp.c'; fi`
 
1320
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-asshelp.Tpo $(DEPDIR)/libcommonpth_a-asshelp.Po
 
1321
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='asshelp.c' object='libcommonpth_a-asshelp.obj' libtool=no @AMDEPBACKSLASH@
 
1322
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1323
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-asshelp.obj `if test -f 'asshelp.c'; then $(CYGPATH_W) 'asshelp.c'; else $(CYGPATH_W) '$(srcdir)/asshelp.c'; fi`
 
1324
 
 
1325
libcommonpth_a-exechelp.o: exechelp.c
 
1326
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-exechelp.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-exechelp.Tpo -c -o libcommonpth_a-exechelp.o `test -f 'exechelp.c' || echo '$(srcdir)/'`exechelp.c
 
1327
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-exechelp.Tpo $(DEPDIR)/libcommonpth_a-exechelp.Po
 
1328
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='exechelp.c' object='libcommonpth_a-exechelp.o' libtool=no @AMDEPBACKSLASH@
 
1329
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1330
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-exechelp.o `test -f 'exechelp.c' || echo '$(srcdir)/'`exechelp.c
 
1331
 
 
1332
libcommonpth_a-exechelp.obj: exechelp.c
 
1333
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-exechelp.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-exechelp.Tpo -c -o libcommonpth_a-exechelp.obj `if test -f 'exechelp.c'; then $(CYGPATH_W) 'exechelp.c'; else $(CYGPATH_W) '$(srcdir)/exechelp.c'; fi`
 
1334
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-exechelp.Tpo $(DEPDIR)/libcommonpth_a-exechelp.Po
 
1335
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='exechelp.c' object='libcommonpth_a-exechelp.obj' libtool=no @AMDEPBACKSLASH@
 
1336
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1337
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-exechelp.obj `if test -f 'exechelp.c'; then $(CYGPATH_W) 'exechelp.c'; else $(CYGPATH_W) '$(srcdir)/exechelp.c'; fi`
 
1338
 
 
1339
libcommonpth_a-signal.o: signal.c
 
1340
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-signal.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-signal.Tpo -c -o libcommonpth_a-signal.o `test -f 'signal.c' || echo '$(srcdir)/'`signal.c
 
1341
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-signal.Tpo $(DEPDIR)/libcommonpth_a-signal.Po
 
1342
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='signal.c' object='libcommonpth_a-signal.o' libtool=no @AMDEPBACKSLASH@
 
1343
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1344
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-signal.o `test -f 'signal.c' || echo '$(srcdir)/'`signal.c
 
1345
 
 
1346
libcommonpth_a-signal.obj: signal.c
 
1347
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-signal.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-signal.Tpo -c -o libcommonpth_a-signal.obj `if test -f 'signal.c'; then $(CYGPATH_W) 'signal.c'; else $(CYGPATH_W) '$(srcdir)/signal.c'; fi`
 
1348
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-signal.Tpo $(DEPDIR)/libcommonpth_a-signal.Po
 
1349
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='signal.c' object='libcommonpth_a-signal.obj' libtool=no @AMDEPBACKSLASH@
 
1350
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1351
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-signal.obj `if test -f 'signal.c'; then $(CYGPATH_W) 'signal.c'; else $(CYGPATH_W) '$(srcdir)/signal.c'; fi`
 
1352
 
 
1353
libcommonpth_a-estream.o: estream.c
 
1354
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-estream.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-estream.Tpo -c -o libcommonpth_a-estream.o `test -f 'estream.c' || echo '$(srcdir)/'`estream.c
 
1355
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-estream.Tpo $(DEPDIR)/libcommonpth_a-estream.Po
 
1356
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='estream.c' object='libcommonpth_a-estream.o' libtool=no @AMDEPBACKSLASH@
 
1357
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1358
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-estream.o `test -f 'estream.c' || echo '$(srcdir)/'`estream.c
 
1359
 
 
1360
libcommonpth_a-estream.obj: estream.c
 
1361
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-estream.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-estream.Tpo -c -o libcommonpth_a-estream.obj `if test -f 'estream.c'; then $(CYGPATH_W) 'estream.c'; else $(CYGPATH_W) '$(srcdir)/estream.c'; fi`
 
1362
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-estream.Tpo $(DEPDIR)/libcommonpth_a-estream.Po
 
1363
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='estream.c' object='libcommonpth_a-estream.obj' libtool=no @AMDEPBACKSLASH@
 
1364
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1365
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-estream.obj `if test -f 'estream.c'; then $(CYGPATH_W) 'estream.c'; else $(CYGPATH_W) '$(srcdir)/estream.c'; fi`
 
1366
 
 
1367
libcommonpth_a-estream-printf.o: estream-printf.c
 
1368
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-estream-printf.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-estream-printf.Tpo -c -o libcommonpth_a-estream-printf.o `test -f 'estream-printf.c' || echo '$(srcdir)/'`estream-printf.c
 
1369
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-estream-printf.Tpo $(DEPDIR)/libcommonpth_a-estream-printf.Po
 
1370
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='estream-printf.c' object='libcommonpth_a-estream-printf.o' libtool=no @AMDEPBACKSLASH@
 
1371
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1372
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-estream-printf.o `test -f 'estream-printf.c' || echo '$(srcdir)/'`estream-printf.c
 
1373
 
 
1374
libcommonpth_a-estream-printf.obj: estream-printf.c
 
1375
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-estream-printf.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-estream-printf.Tpo -c -o libcommonpth_a-estream-printf.obj `if test -f 'estream-printf.c'; then $(CYGPATH_W) 'estream-printf.c'; else $(CYGPATH_W) '$(srcdir)/estream-printf.c'; fi`
 
1376
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-estream-printf.Tpo $(DEPDIR)/libcommonpth_a-estream-printf.Po
 
1377
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='estream-printf.c' object='libcommonpth_a-estream-printf.obj' libtool=no @AMDEPBACKSLASH@
 
1378
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1379
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-estream-printf.obj `if test -f 'estream-printf.c'; then $(CYGPATH_W) 'estream-printf.c'; else $(CYGPATH_W) '$(srcdir)/estream-printf.c'; fi`
 
1380
 
 
1381
libcommonpth_a-audit.o: audit.c
 
1382
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-audit.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-audit.Tpo -c -o libcommonpth_a-audit.o `test -f 'audit.c' || echo '$(srcdir)/'`audit.c
 
1383
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-audit.Tpo $(DEPDIR)/libcommonpth_a-audit.Po
 
1384
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='audit.c' object='libcommonpth_a-audit.o' libtool=no @AMDEPBACKSLASH@
 
1385
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1386
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-audit.o `test -f 'audit.c' || echo '$(srcdir)/'`audit.c
 
1387
 
 
1388
libcommonpth_a-audit.obj: audit.c
 
1389
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-audit.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-audit.Tpo -c -o libcommonpth_a-audit.obj `if test -f 'audit.c'; then $(CYGPATH_W) 'audit.c'; else $(CYGPATH_W) '$(srcdir)/audit.c'; fi`
 
1390
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-audit.Tpo $(DEPDIR)/libcommonpth_a-audit.Po
 
1391
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='audit.c' object='libcommonpth_a-audit.obj' libtool=no @AMDEPBACKSLASH@
 
1392
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1393
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-audit.obj `if test -f 'audit.c'; then $(CYGPATH_W) 'audit.c'; else $(CYGPATH_W) '$(srcdir)/audit.c'; fi`
 
1394
 
 
1395
libcommonpth_a-dns-cert.o: dns-cert.c
 
1396
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-dns-cert.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-dns-cert.Tpo -c -o libcommonpth_a-dns-cert.o `test -f 'dns-cert.c' || echo '$(srcdir)/'`dns-cert.c
 
1397
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-dns-cert.Tpo $(DEPDIR)/libcommonpth_a-dns-cert.Po
 
1398
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='dns-cert.c' object='libcommonpth_a-dns-cert.o' libtool=no @AMDEPBACKSLASH@
 
1399
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1400
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-dns-cert.o `test -f 'dns-cert.c' || echo '$(srcdir)/'`dns-cert.c
 
1401
 
 
1402
libcommonpth_a-dns-cert.obj: dns-cert.c
 
1403
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-dns-cert.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-dns-cert.Tpo -c -o libcommonpth_a-dns-cert.obj `if test -f 'dns-cert.c'; then $(CYGPATH_W) 'dns-cert.c'; else $(CYGPATH_W) '$(srcdir)/dns-cert.c'; fi`
 
1404
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-dns-cert.Tpo $(DEPDIR)/libcommonpth_a-dns-cert.Po
 
1405
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='dns-cert.c' object='libcommonpth_a-dns-cert.obj' libtool=no @AMDEPBACKSLASH@
 
1406
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1407
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-dns-cert.obj `if test -f 'dns-cert.c'; then $(CYGPATH_W) 'dns-cert.c'; else $(CYGPATH_W) '$(srcdir)/dns-cert.c'; fi`
 
1408
 
 
1409
libcommonpth_a-pka.o: pka.c
 
1410
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-pka.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-pka.Tpo -c -o libcommonpth_a-pka.o `test -f 'pka.c' || echo '$(srcdir)/'`pka.c
 
1411
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-pka.Tpo $(DEPDIR)/libcommonpth_a-pka.Po
 
1412
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='pka.c' object='libcommonpth_a-pka.o' libtool=no @AMDEPBACKSLASH@
 
1413
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1414
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-pka.o `test -f 'pka.c' || echo '$(srcdir)/'`pka.c
 
1415
 
 
1416
libcommonpth_a-pka.obj: pka.c
 
1417
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-pka.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-pka.Tpo -c -o libcommonpth_a-pka.obj `if test -f 'pka.c'; then $(CYGPATH_W) 'pka.c'; else $(CYGPATH_W) '$(srcdir)/pka.c'; fi`
 
1418
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-pka.Tpo $(DEPDIR)/libcommonpth_a-pka.Po
 
1419
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='pka.c' object='libcommonpth_a-pka.obj' libtool=no @AMDEPBACKSLASH@
 
1420
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1421
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-pka.obj `if test -f 'pka.c'; then $(CYGPATH_W) 'pka.c'; else $(CYGPATH_W) '$(srcdir)/pka.c'; fi`
 
1422
 
 
1423
libcommonpth_a-http.o: http.c
 
1424
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-http.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-http.Tpo -c -o libcommonpth_a-http.o `test -f 'http.c' || echo '$(srcdir)/'`http.c
 
1425
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-http.Tpo $(DEPDIR)/libcommonpth_a-http.Po
 
1426
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='http.c' object='libcommonpth_a-http.o' libtool=no @AMDEPBACKSLASH@
 
1427
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1428
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-http.o `test -f 'http.c' || echo '$(srcdir)/'`http.c
 
1429
 
 
1430
libcommonpth_a-http.obj: http.c
 
1431
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-http.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-http.Tpo -c -o libcommonpth_a-http.obj `if test -f 'http.c'; then $(CYGPATH_W) 'http.c'; else $(CYGPATH_W) '$(srcdir)/http.c'; fi`
 
1432
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-http.Tpo $(DEPDIR)/libcommonpth_a-http.Po
 
1433
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='http.c' object='libcommonpth_a-http.obj' libtool=no @AMDEPBACKSLASH@
 
1434
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1435
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-http.obj `if test -f 'http.c'; then $(CYGPATH_W) 'http.c'; else $(CYGPATH_W) '$(srcdir)/http.c'; fi`
 
1436
 
 
1437
libcommonpth_a-localename.o: localename.c
 
1438
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-localename.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-localename.Tpo -c -o libcommonpth_a-localename.o `test -f 'localename.c' || echo '$(srcdir)/'`localename.c
 
1439
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-localename.Tpo $(DEPDIR)/libcommonpth_a-localename.Po
 
1440
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='localename.c' object='libcommonpth_a-localename.o' libtool=no @AMDEPBACKSLASH@
 
1441
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1442
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-localename.o `test -f 'localename.c' || echo '$(srcdir)/'`localename.c
 
1443
 
 
1444
libcommonpth_a-localename.obj: localename.c
 
1445
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-localename.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-localename.Tpo -c -o libcommonpth_a-localename.obj `if test -f 'localename.c'; then $(CYGPATH_W) 'localename.c'; else $(CYGPATH_W) '$(srcdir)/localename.c'; fi`
 
1446
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-localename.Tpo $(DEPDIR)/libcommonpth_a-localename.Po
 
1447
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='localename.c' object='libcommonpth_a-localename.obj' libtool=no @AMDEPBACKSLASH@
 
1448
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1449
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-localename.obj `if test -f 'localename.c'; then $(CYGPATH_W) 'localename.c'; else $(CYGPATH_W) '$(srcdir)/localename.c'; fi`
 
1450
 
 
1451
libcommonpth_a-helpfile.o: helpfile.c
 
1452
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-helpfile.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-helpfile.Tpo -c -o libcommonpth_a-helpfile.o `test -f 'helpfile.c' || echo '$(srcdir)/'`helpfile.c
 
1453
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-helpfile.Tpo $(DEPDIR)/libcommonpth_a-helpfile.Po
 
1454
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='helpfile.c' object='libcommonpth_a-helpfile.o' libtool=no @AMDEPBACKSLASH@
 
1455
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1456
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-helpfile.o `test -f 'helpfile.c' || echo '$(srcdir)/'`helpfile.c
 
1457
 
 
1458
libcommonpth_a-helpfile.obj: helpfile.c
 
1459
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-helpfile.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-helpfile.Tpo -c -o libcommonpth_a-helpfile.obj `if test -f 'helpfile.c'; then $(CYGPATH_W) 'helpfile.c'; else $(CYGPATH_W) '$(srcdir)/helpfile.c'; fi`
 
1460
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-helpfile.Tpo $(DEPDIR)/libcommonpth_a-helpfile.Po
 
1461
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='helpfile.c' object='libcommonpth_a-helpfile.obj' libtool=no @AMDEPBACKSLASH@
 
1462
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1463
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-helpfile.obj `if test -f 'helpfile.c'; then $(CYGPATH_W) 'helpfile.c'; else $(CYGPATH_W) '$(srcdir)/helpfile.c'; fi`
 
1464
 
 
1465
libcommonpth_a-srv.o: srv.c
 
1466
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-srv.o -MD -MP -MF $(DEPDIR)/libcommonpth_a-srv.Tpo -c -o libcommonpth_a-srv.o `test -f 'srv.c' || echo '$(srcdir)/'`srv.c
 
1467
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-srv.Tpo $(DEPDIR)/libcommonpth_a-srv.Po
 
1468
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='srv.c' object='libcommonpth_a-srv.o' libtool=no @AMDEPBACKSLASH@
 
1469
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1470
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-srv.o `test -f 'srv.c' || echo '$(srcdir)/'`srv.c
 
1471
 
 
1472
libcommonpth_a-srv.obj: srv.c
 
1473
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -MT libcommonpth_a-srv.obj -MD -MP -MF $(DEPDIR)/libcommonpth_a-srv.Tpo -c -o libcommonpth_a-srv.obj `if test -f 'srv.c'; then $(CYGPATH_W) 'srv.c'; else $(CYGPATH_W) '$(srcdir)/srv.c'; fi`
 
1474
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libcommonpth_a-srv.Tpo $(DEPDIR)/libcommonpth_a-srv.Po
 
1475
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='srv.c' object='libcommonpth_a-srv.obj' libtool=no @AMDEPBACKSLASH@
 
1476
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1477
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcommonpth_a_CFLAGS) $(CFLAGS) -c -o libcommonpth_a-srv.obj `if test -f 'srv.c'; then $(CYGPATH_W) 'srv.c'; else $(CYGPATH_W) '$(srcdir)/srv.c'; fi`
 
1478
 
 
1479
libsimple_pwquery_a-simple-pwquery.o: simple-pwquery.c
 
1480
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsimple_pwquery_a_CFLAGS) $(CFLAGS) -MT libsimple_pwquery_a-simple-pwquery.o -MD -MP -MF $(DEPDIR)/libsimple_pwquery_a-simple-pwquery.Tpo -c -o libsimple_pwquery_a-simple-pwquery.o `test -f 'simple-pwquery.c' || echo '$(srcdir)/'`simple-pwquery.c
 
1481
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libsimple_pwquery_a-simple-pwquery.Tpo $(DEPDIR)/libsimple_pwquery_a-simple-pwquery.Po
 
1482
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='simple-pwquery.c' object='libsimple_pwquery_a-simple-pwquery.o' libtool=no @AMDEPBACKSLASH@
 
1483
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1484
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsimple_pwquery_a_CFLAGS) $(CFLAGS) -c -o libsimple_pwquery_a-simple-pwquery.o `test -f 'simple-pwquery.c' || echo '$(srcdir)/'`simple-pwquery.c
 
1485
 
 
1486
libsimple_pwquery_a-simple-pwquery.obj: simple-pwquery.c
 
1487
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsimple_pwquery_a_CFLAGS) $(CFLAGS) -MT libsimple_pwquery_a-simple-pwquery.obj -MD -MP -MF $(DEPDIR)/libsimple_pwquery_a-simple-pwquery.Tpo -c -o libsimple_pwquery_a-simple-pwquery.obj `if test -f 'simple-pwquery.c'; then $(CYGPATH_W) 'simple-pwquery.c'; else $(CYGPATH_W) '$(srcdir)/simple-pwquery.c'; fi`
 
1488
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libsimple_pwquery_a-simple-pwquery.Tpo $(DEPDIR)/libsimple_pwquery_a-simple-pwquery.Po
 
1489
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='simple-pwquery.c' object='libsimple_pwquery_a-simple-pwquery.obj' libtool=no @AMDEPBACKSLASH@
 
1490
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1491
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsimple_pwquery_a_CFLAGS) $(CFLAGS) -c -o libsimple_pwquery_a-simple-pwquery.obj `if test -f 'simple-pwquery.c'; then $(CYGPATH_W) 'simple-pwquery.c'; else $(CYGPATH_W) '$(srcdir)/simple-pwquery.c'; fi`
 
1492
 
 
1493
libsimple_pwquery_a-asshelp.o: asshelp.c
 
1494
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsimple_pwquery_a_CFLAGS) $(CFLAGS) -MT libsimple_pwquery_a-asshelp.o -MD -MP -MF $(DEPDIR)/libsimple_pwquery_a-asshelp.Tpo -c -o libsimple_pwquery_a-asshelp.o `test -f 'asshelp.c' || echo '$(srcdir)/'`asshelp.c
 
1495
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libsimple_pwquery_a-asshelp.Tpo $(DEPDIR)/libsimple_pwquery_a-asshelp.Po
 
1496
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='asshelp.c' object='libsimple_pwquery_a-asshelp.o' libtool=no @AMDEPBACKSLASH@
 
1497
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1498
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsimple_pwquery_a_CFLAGS) $(CFLAGS) -c -o libsimple_pwquery_a-asshelp.o `test -f 'asshelp.c' || echo '$(srcdir)/'`asshelp.c
 
1499
 
 
1500
libsimple_pwquery_a-asshelp.obj: asshelp.c
 
1501
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsimple_pwquery_a_CFLAGS) $(CFLAGS) -MT libsimple_pwquery_a-asshelp.obj -MD -MP -MF $(DEPDIR)/libsimple_pwquery_a-asshelp.Tpo -c -o libsimple_pwquery_a-asshelp.obj `if test -f 'asshelp.c'; then $(CYGPATH_W) 'asshelp.c'; else $(CYGPATH_W) '$(srcdir)/asshelp.c'; fi`
 
1502
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/libsimple_pwquery_a-asshelp.Tpo $(DEPDIR)/libsimple_pwquery_a-asshelp.Po
 
1503
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='asshelp.c' object='libsimple_pwquery_a-asshelp.obj' libtool=no @AMDEPBACKSLASH@
 
1504
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1505
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsimple_pwquery_a_CFLAGS) $(CFLAGS) -c -o libsimple_pwquery_a-asshelp.obj `if test -f 'asshelp.c'; then $(CYGPATH_W) 'asshelp.c'; else $(CYGPATH_W) '$(srcdir)/asshelp.c'; fi`
443
1506
 
444
1507
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
445
1508
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
489
1552
distclean-tags:
490
1553
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
491
1554
 
 
1555
check-TESTS: $(TESTS)
 
1556
        @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[        ]'; \
 
1557
        srcdir=$(srcdir); export srcdir; \
 
1558
        list=' $(TESTS) '; \
 
1559
        if test -n "$$list"; then \
 
1560
          for tst in $$list; do \
 
1561
            if test -f ./$$tst; then dir=./; \
 
1562
            elif test -f $$tst; then dir=; \
 
1563
            else dir="$(srcdir)/"; fi; \
 
1564
            if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
 
1565
              all=`expr $$all + 1`; \
 
1566
              case " $(XFAIL_TESTS) " in \
 
1567
              *$$ws$$tst$$ws*) \
 
1568
                xpass=`expr $$xpass + 1`; \
 
1569
                failed=`expr $$failed + 1`; \
 
1570
                echo "XPASS: $$tst"; \
 
1571
              ;; \
 
1572
              *) \
 
1573
                echo "PASS: $$tst"; \
 
1574
              ;; \
 
1575
              esac; \
 
1576
            elif test $$? -ne 77; then \
 
1577
              all=`expr $$all + 1`; \
 
1578
              case " $(XFAIL_TESTS) " in \
 
1579
              *$$ws$$tst$$ws*) \
 
1580
                xfail=`expr $$xfail + 1`; \
 
1581
                echo "XFAIL: $$tst"; \
 
1582
              ;; \
 
1583
              *) \
 
1584
                failed=`expr $$failed + 1`; \
 
1585
                echo "FAIL: $$tst"; \
 
1586
              ;; \
 
1587
              esac; \
 
1588
            else \
 
1589
              skip=`expr $$skip + 1`; \
 
1590
              echo "SKIP: $$tst"; \
 
1591
            fi; \
 
1592
          done; \
 
1593
          if test "$$failed" -eq 0; then \
 
1594
            if test "$$xfail" -eq 0; then \
 
1595
              banner="All $$all tests passed"; \
 
1596
            else \
 
1597
              banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
 
1598
            fi; \
 
1599
          else \
 
1600
            if test "$$xpass" -eq 0; then \
 
1601
              banner="$$failed of $$all tests failed"; \
 
1602
            else \
 
1603
              banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
 
1604
            fi; \
 
1605
          fi; \
 
1606
          dashes="$$banner"; \
 
1607
          skipped=""; \
 
1608
          if test "$$skip" -ne 0; then \
 
1609
            skipped="($$skip tests were not run)"; \
 
1610
            test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
 
1611
              dashes="$$skipped"; \
 
1612
          fi; \
 
1613
          report=""; \
 
1614
          if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
 
1615
            report="Please report to $(PACKAGE_BUGREPORT)"; \
 
1616
            test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
 
1617
              dashes="$$report"; \
 
1618
          fi; \
 
1619
          dashes=`echo "$$dashes" | sed s/./=/g`; \
 
1620
          echo "$$dashes"; \
 
1621
          echo "$$banner"; \
 
1622
          test -z "$$skipped" || echo "$$skipped"; \
 
1623
          test -z "$$report" || echo "$$report"; \
 
1624
          echo "$$dashes"; \
 
1625
          test "$$failed" -eq 0; \
 
1626
        else :; fi
 
1627
 
492
1628
distdir: $(DISTFILES)
493
 
        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
494
 
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
495
 
        list='$(DISTFILES)'; for file in $$list; do \
496
 
          case $$file in \
497
 
            $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
498
 
            $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
499
 
          esac; \
 
1629
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
1630
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
1631
        list='$(DISTFILES)'; \
 
1632
          dist_files=`for file in $$list; do echo $$file; done | \
 
1633
          sed -e "s|^$$srcdirstrip/||;t" \
 
1634
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
 
1635
        case $$dist_files in \
 
1636
          */*) $(MKDIR_P) `echo "$$dist_files" | \
 
1637
                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
 
1638
                           sort -u` ;; \
 
1639
        esac; \
 
1640
        for file in $$dist_files; do \
500
1641
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
501
 
          dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
502
 
          if test "$$dir" != "$$file" && test "$$dir" != "."; then \
503
 
            dir="/$$dir"; \
504
 
            $(mkdir_p) "$(distdir)$$dir"; \
505
 
          else \
506
 
            dir=''; \
507
 
          fi; \
508
1642
          if test -d $$d/$$file; then \
 
1643
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
509
1644
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
510
1645
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
511
1646
            fi; \
517
1652
          fi; \
518
1653
        done
519
1654
check-am: all-am
520
 
check: check-am
521
 
all-am: Makefile $(LIBRARIES)
 
1655
        $(MAKE) $(AM_MAKEFLAGS) check-TESTS
 
1656
check: $(BUILT_SOURCES)
 
1657
        $(MAKE) $(AM_MAKEFLAGS) check-am
 
1658
all-am: Makefile $(LIBRARIES) $(PROGRAMS)
522
1659
installdirs:
523
 
install: install-am
 
1660
install: $(BUILT_SOURCES)
 
1661
        $(MAKE) $(AM_MAKEFLAGS) install-am
524
1662
install-exec: install-exec-am
525
1663
install-data: install-data-am
526
1664
uninstall: uninstall-am
537
1675
mostlyclean-generic:
538
1676
 
539
1677
clean-generic:
 
1678
        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
540
1679
 
541
1680
distclean-generic:
542
1681
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
544
1683
maintainer-clean-generic:
545
1684
        @echo "This command is intended for maintainers to use"
546
1685
        @echo "it deletes files that may require special tools to rebuild."
 
1686
        -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
547
1687
clean: clean-am
548
1688
 
549
 
clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
 
1689
clean-am: clean-generic clean-noinstLIBRARIES clean-noinstPROGRAMS \
 
1690
        mostlyclean-am
550
1691
 
551
1692
distclean: distclean-am
552
1693
        -rm -rf ./$(DEPDIR)
566
1707
 
567
1708
install-data-am:
568
1709
 
 
1710
install-dvi: install-dvi-am
 
1711
 
569
1712
install-exec-am:
570
1713
 
 
1714
install-html: install-html-am
 
1715
 
571
1716
install-info: install-info-am
572
1717
 
573
1718
install-man:
574
1719
 
 
1720
install-pdf: install-pdf-am
 
1721
 
 
1722
install-ps: install-ps-am
 
1723
 
575
1724
installcheck-am:
576
1725
 
577
1726
maintainer-clean: maintainer-clean-am
591
1740
 
592
1741
ps-am:
593
1742
 
594
 
uninstall-am: uninstall-info-am
595
 
 
596
 
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
597
 
        clean-noinstLIBRARIES ctags distclean distclean-compile \
598
 
        distclean-generic distclean-tags distdir dvi dvi-am html \
599
 
        html-am info info-am install install-am install-data \
600
 
        install-data-am install-exec install-exec-am install-info \
601
 
        install-info-am install-man install-strip installcheck \
602
 
        installcheck-am installdirs maintainer-clean \
603
 
        maintainer-clean-generic mostlyclean mostlyclean-compile \
604
 
        mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
605
 
        uninstall-am uninstall-info-am
606
 
 
 
1743
uninstall-am:
 
1744
 
 
1745
.MAKE: install-am install-strip
 
1746
 
 
1747
.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
 
1748
        clean-generic clean-noinstLIBRARIES clean-noinstPROGRAMS ctags \
 
1749
        distclean distclean-compile distclean-generic distclean-tags \
 
1750
        distdir dvi dvi-am html html-am info info-am install \
 
1751
        install-am install-data install-data-am install-dvi \
 
1752
        install-dvi-am install-exec install-exec-am install-html \
 
1753
        install-html-am install-info install-info-am install-man \
 
1754
        install-pdf install-pdf-am install-ps install-ps-am \
 
1755
        install-strip installcheck installcheck-am installdirs \
 
1756
        maintainer-clean maintainer-clean-generic mostlyclean \
 
1757
        mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
 
1758
        tags uninstall uninstall-am
 
1759
 
 
1760
 
 
1761
# Create the audit-events.h include file from audit.h
 
1762
audit-events.h: Makefile mkstrtable.awk exaudit.awk audit.h
 
1763
        $(AWK) -f $(srcdir)/exaudit.awk $(srcdir)/audit.h \
 
1764
          | $(AWK) -f $(srcdir)/mkstrtable.awk -v textidx=3 -v nogettext=1 \
 
1765
                   -v namespace=eventstr_  >$@
 
1766
 
 
1767
# Create the status-codes.h include file from status.h
 
1768
status-codes.h: Makefile mkstrtable.awk exstatus.awk status.h
 
1769
        $(AWK) -f $(srcdir)/exstatus.awk $(srcdir)/status.h \
 
1770
          | $(AWK) -f $(srcdir)/mkstrtable.awk -v textidx=3 -v nogettext=1 \
 
1771
                   -v namespace=statusstr_  >$@
607
1772
# Tell versions [3.59,3.63) of GNU make to not export all variables.
608
1773
# Otherwise a system limit (for SysV at least) may be exceeded.
609
1774
.NOEXPORT: