~ubuntu-branches/ubuntu/precise/nss-pam-ldapd/precise-security

« back to all changes in this revision

Viewing changes to tests/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Arthur de Jong
  • Date: 2011-09-04 21:00:00 UTC
  • mfrom: (14.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20110904210000-pe3u91iga88vtr16
Tags: 0.8.4
* Upload to unstable
* switch to using the member attribute by default instead of
  uniqueMember (backwards incompatible change)
* only return "x" as a password hash when the object has the shadowAccount
  objectClass and nsswitch.conf is configured to do shadow lookups using
  LDAP (this avoids some problems with pam_unix)
* fix problem with partial attribute name matches in DN (thanks Timothy
  White)
* fix a problem with objectSid mappings with recent versions of OpenLDAP
  (patch by Wesley Mason)
* set the socket timeout in a connection callback to avoid timeout
  issues during the SSL handshake (patch by Stefan Völkel)
* check for unknown variables in pam_authz_search
* only check password expiration when authenticating, only check account
  expiration when doing authorisation
* make buffer sizes consistent and grow all buffers holding string
  representations of numbers to be able to hold 64-bit numbers
* update AX_PTHREAD from autoconf-archive
* support querying DNS SRV records from a different domain than the current
  one (based on a patch by James M. Leddy)
* fix a problem with uninitialised memory while parsing the tls_ciphers
  option (closes: #638872) (but doesn't work yet due to #640384)
* implement bounds checking of numeric values read from LDAP (patch by
  Jakub Hrozek)
* correctly support large uid and gid values from LDAP (patch by Jakub
  Hrozek)
* improvements to the configure script (patch by Jakub Hrozek)
* switch to dh for debian/rules and bump debhelper compatibility to 8
* build Debian packages with multiarch support
* ship shlibs (but still no symbol files) for libnss-ldapd since that was
  the easiest way to support multiarch
* fix output in init script when restarting nslcd (closes: #637132)
* correctly handle leading and trailing spaces in preseeded debconf uri
  option (patch by Andreas B. Mundt) (closes: #637863)
* support spaces around database names in /etc/nsswitch.conf while
  configuring package (closes: #640185)
* updated Russian debconf translation by Yuri Kozlov (closes: #637751)
* updated French debconf translation by Christian Perrier (closes: #637756)
* added Slovak debconf translation by Slavko (closes: #637759)
* updated Danish debconf translation by Joe Hansen (closes :#637763)
* updated Brazilian Portuguese debconf translation by Denis Doria
* updated Portuguese debconf translation by Américo Monteiro
* updated Japanese debconf translation by Kenshi Muto (closes: #638195)
* updated Czech debconf translation by Miroslav Kure (closes: #639026)
* updated German debconf translation by Chris Leick (closes: #639107)
* updated Spanish debconf translation by Francisco Javier Cuadrado
  (closes: #639236)
* updated Dutch debconf translation by Arthur de Jong with help from Paul
  Gevers and Jeroen Schot

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# Makefile.am - use automake to generate Makefile.in
19
19
#
20
20
# Copyright (C) 2006 West Consulting
21
 
# Copyright (C) 2006, 2007, 2008, 2009, 2010 Arthur de Jong
 
21
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Arthur de Jong
22
22
#
23
23
# This library is free software; you can redistribute it and/or
24
24
# modify it under the terms of the GNU Lesser General Public
55
55
host_triplet = @host@
56
56
target_triplet = @target@
57
57
TESTS = test_dict$(EXEEXT) test_set$(EXEEXT) test_tio$(EXEEXT) \
58
 
        test_cfg$(EXEEXT) test_myldap.sh test_nsscmds.sh \
59
 
        test_getpeercred$(EXEEXT) test_common$(EXEEXT) \
60
 
        test_expr$(EXEEXT)
 
58
        test_expr$(EXEEXT) test_getpeercred$(EXEEXT) test_cfg$(EXEEXT) \
 
59
        test_myldap.sh test_common$(EXEEXT) test_nsscmds.sh \
 
60
        test_pamcmds.sh
61
61
check_PROGRAMS = test_dict$(EXEEXT) test_set$(EXEEXT) \
62
 
        test_tio$(EXEEXT) test_cfg$(EXEEXT) test_myldap$(EXEEXT) \
63
 
        test_getpeercred$(EXEEXT) test_common$(EXEEXT) \
64
 
        test_expr$(EXEEXT)
65
 
EXTRA_PROGRAMS = test_aliases$(EXEEXT) test_ethers$(EXEEXT) \
66
 
        test_group$(EXEEXT) test_hosts$(EXEEXT) test_netgroup$(EXEEXT) \
67
 
        test_networks$(EXEEXT) test_passwd$(EXEEXT) \
68
 
        test_protocols$(EXEEXT) test_rpc$(EXEEXT) \
69
 
        test_services$(EXEEXT) test_shadow$(EXEEXT) \
70
 
        test_nslcd_group$(EXEEXT)
 
62
        test_tio$(EXEEXT) test_expr$(EXEEXT) test_getpeercred$(EXEEXT) \
 
63
        test_cfg$(EXEEXT) test_myldap$(EXEEXT) test_common$(EXEEXT)
71
64
subdir = tests
72
65
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
73
66
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
79
72
CONFIG_HEADER = $(top_builddir)/config.h
80
73
CONFIG_CLEAN_FILES =
81
74
CONFIG_CLEAN_VPATH_FILES =
82
 
am__objects_1 = nslcd-prot.$(OBJEXT) tio.$(OBJEXT) common.$(OBJEXT)
83
 
am_test_aliases_OBJECTS = test_aliases.$(OBJEXT) aliases.$(OBJEXT) \
84
 
        $(am__objects_1)
85
 
test_aliases_OBJECTS = $(am_test_aliases_OBJECTS)
86
 
test_aliases_LDADD = $(LDADD)
87
75
am_test_cfg_OBJECTS = test_cfg.$(OBJEXT)
88
76
test_cfg_OBJECTS = $(am_test_cfg_OBJECTS)
89
 
test_cfg_DEPENDENCIES = ../nslcd/log.o ../nslcd/attmap.o \
90
 
        ../nslcd/common.o ../nslcd/myldap.o ../nslcd/alias.o \
91
 
        ../nslcd/ether.o ../nslcd/group.o ../nslcd/host.o \
92
 
        ../nslcd/netgroup.o ../nslcd/network.o ../nslcd/passwd.o \
93
 
        ../nslcd/protocol.o ../nslcd/rpc.o ../nslcd/service.o \
94
 
        ../nslcd/shadow.o ../common/libtio.a ../common/libdict.a \
95
 
        ../common/libexpr.a ../compat/libcompat.a
 
77
am__DEPENDENCIES_1 = ../nslcd/log.o ../nslcd/common.o \
 
78
        ../nslcd/myldap.o ../nslcd/attmap.o ../nslcd/nsswitch.o \
 
79
        ../nslcd/alias.o ../nslcd/ether.o ../nslcd/group.o \
 
80
        ../nslcd/host.o ../nslcd/netgroup.o ../nslcd/network.o \
 
81
        ../nslcd/passwd.o ../nslcd/protocol.o ../nslcd/rpc.o \
 
82
        ../nslcd/service.o ../nslcd/shadow.o ../nslcd/pam.o \
 
83
        ../common/libtio.a ../common/libdict.a ../common/libexpr.a \
 
84
        ../compat/libcompat.a
 
85
test_cfg_DEPENDENCIES = $(am__DEPENDENCIES_1)
96
86
am_test_common_OBJECTS = test_common.$(OBJEXT)
97
87
test_common_OBJECTS = $(am_test_common_OBJECTS)
98
 
test_common_DEPENDENCIES = ../nslcd/log.o ../nslcd/common.o \
99
 
        ../nslcd/cfg.o ../nslcd/alias.o ../nslcd/ether.o \
100
 
        ../nslcd/group.o ../nslcd/host.o ../nslcd/netgroup.o \
101
 
        ../nslcd/network.o ../nslcd/passwd.o ../nslcd/protocol.o \
102
 
        ../nslcd/rpc.o ../nslcd/service.o ../nslcd/shadow.o \
103
 
        ../nslcd/myldap.o ../common/libtio.a ../common/libdict.a \
104
 
        ../compat/libcompat.a
 
88
test_common_DEPENDENCIES = ../nslcd/cfg.o $(am__DEPENDENCIES_1)
105
89
am_test_dict_OBJECTS = test_dict.$(OBJEXT) dict.$(OBJEXT)
106
90
test_dict_OBJECTS = $(am_test_dict_OBJECTS)
107
91
test_dict_LDADD = $(LDADD)
108
 
am_test_ethers_OBJECTS = test_ethers.$(OBJEXT) ethers.$(OBJEXT) \
109
 
        $(am__objects_1)
110
 
test_ethers_OBJECTS = $(am_test_ethers_OBJECTS)
111
 
test_ethers_LDADD = $(LDADD)
112
92
am_test_expr_OBJECTS = test_expr.$(OBJEXT)
113
93
test_expr_OBJECTS = $(am_test_expr_OBJECTS)
114
94
test_expr_DEPENDENCIES = ../common/set.o ../common/dict.o
115
95
am_test_getpeercred_OBJECTS = test_getpeercred.$(OBJEXT)
116
96
test_getpeercred_OBJECTS = $(am_test_getpeercred_OBJECTS)
117
97
test_getpeercred_DEPENDENCIES = ../compat/libcompat.a
118
 
am_test_group_OBJECTS = test_group.$(OBJEXT) group.$(OBJEXT) \
119
 
        $(am__objects_1)
120
 
test_group_OBJECTS = $(am_test_group_OBJECTS)
121
 
test_group_LDADD = $(LDADD)
122
 
am_test_hosts_OBJECTS = test_hosts.$(OBJEXT) hosts.$(OBJEXT) \
123
 
        $(am__objects_1)
124
 
test_hosts_OBJECTS = $(am_test_hosts_OBJECTS)
125
 
test_hosts_LDADD = $(LDADD)
126
98
am_test_myldap_OBJECTS = test_myldap.$(OBJEXT)
127
99
test_myldap_OBJECTS = $(am_test_myldap_OBJECTS)
128
 
test_myldap_DEPENDENCIES = ../nslcd/log.o ../nslcd/common.o \
129
 
        ../nslcd/cfg.o ../nslcd/alias.o ../nslcd/ether.o \
130
 
        ../nslcd/group.o ../nslcd/host.o ../nslcd/netgroup.o \
131
 
        ../nslcd/network.o ../nslcd/passwd.o ../nslcd/protocol.o \
132
 
        ../nslcd/rpc.o ../nslcd/service.o ../nslcd/shadow.o \
133
 
        ../nslcd/myldap.o ../common/libtio.a ../common/libdict.a \
134
 
        ../compat/libcompat.a
135
 
am_test_netgroup_OBJECTS = test_netgroup.$(OBJEXT) netgroup.$(OBJEXT) \
136
 
        $(am__objects_1)
137
 
test_netgroup_OBJECTS = $(am_test_netgroup_OBJECTS)
138
 
test_netgroup_LDADD = $(LDADD)
139
 
am_test_networks_OBJECTS = test_networks.$(OBJEXT) networks.$(OBJEXT) \
140
 
        $(am__objects_1)
141
 
test_networks_OBJECTS = $(am_test_networks_OBJECTS)
142
 
test_networks_LDADD = $(LDADD)
143
 
am_test_nslcd_group_OBJECTS = test_nslcd_group.$(OBJEXT)
144
 
test_nslcd_group_OBJECTS = $(am_test_nslcd_group_OBJECTS)
145
 
test_nslcd_group_DEPENDENCIES = ../nslcd/log.o ../nslcd/attmap.o \
146
 
        ../common/dict.o ../nslcd/common.o ../nslcd/myldap.o \
147
 
        ../nslcd/alias.o ../nslcd/ether.o ../nslcd/host.o \
148
 
        ../nslcd/netgroup.o ../nslcd/network.o ../nslcd/passwd.o \
149
 
        ../nslcd/protocol.o ../nslcd/rpc.o ../nslcd/service.o \
150
 
        ../nslcd/shadow.o ../common/libtio.a ../common/libdict.a \
151
 
        ../compat/libcompat.a ../nslcd/cfg.o
152
 
am_test_passwd_OBJECTS = test_passwd.$(OBJEXT) passwd.$(OBJEXT) \
153
 
        $(am__objects_1)
154
 
test_passwd_OBJECTS = $(am_test_passwd_OBJECTS)
155
 
test_passwd_LDADD = $(LDADD)
156
 
am_test_protocols_OBJECTS = test_protocols.$(OBJEXT) \
157
 
        protocols.$(OBJEXT) $(am__objects_1)
158
 
test_protocols_OBJECTS = $(am_test_protocols_OBJECTS)
159
 
test_protocols_LDADD = $(LDADD)
160
 
am_test_rpc_OBJECTS = test_rpc.$(OBJEXT) rpc.$(OBJEXT) \
161
 
        $(am__objects_1)
162
 
test_rpc_OBJECTS = $(am_test_rpc_OBJECTS)
163
 
test_rpc_LDADD = $(LDADD)
164
 
am_test_services_OBJECTS = test_services.$(OBJEXT) services.$(OBJEXT) \
165
 
        $(am__objects_1)
166
 
test_services_OBJECTS = $(am_test_services_OBJECTS)
167
 
test_services_LDADD = $(LDADD)
 
100
test_myldap_DEPENDENCIES = ../nslcd/cfg.o $(am__DEPENDENCIES_1)
168
101
am_test_set_OBJECTS = test_set.$(OBJEXT)
169
102
test_set_OBJECTS = $(am_test_set_OBJECTS)
170
103
test_set_DEPENDENCIES = ../common/libdict.a
171
 
am_test_shadow_OBJECTS = test_shadow.$(OBJEXT) shadow.$(OBJEXT) \
172
 
        $(am__objects_1)
173
 
test_shadow_OBJECTS = $(am_test_shadow_OBJECTS)
174
 
test_shadow_LDADD = $(LDADD)
175
104
am_test_tio_OBJECTS = test_tio.$(OBJEXT) tio.$(OBJEXT)
176
105
test_tio_OBJECTS = $(am_test_tio_OBJECTS)
177
106
test_tio_LDADD = $(LDADD)
185
114
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
186
115
CCLD = $(CC)
187
116
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
188
 
SOURCES = $(test_aliases_SOURCES) $(test_cfg_SOURCES) \
189
 
        $(test_common_SOURCES) $(test_dict_SOURCES) \
190
 
        $(test_ethers_SOURCES) $(test_expr_SOURCES) \
191
 
        $(test_getpeercred_SOURCES) $(test_group_SOURCES) \
192
 
        $(test_hosts_SOURCES) $(test_myldap_SOURCES) \
193
 
        $(test_netgroup_SOURCES) $(test_networks_SOURCES) \
194
 
        $(test_nslcd_group_SOURCES) $(test_passwd_SOURCES) \
195
 
        $(test_protocols_SOURCES) $(test_rpc_SOURCES) \
196
 
        $(test_services_SOURCES) $(test_set_SOURCES) \
197
 
        $(test_shadow_SOURCES) $(test_tio_SOURCES)
198
 
DIST_SOURCES = $(test_aliases_SOURCES) $(test_cfg_SOURCES) \
199
 
        $(test_common_SOURCES) $(test_dict_SOURCES) \
200
 
        $(test_ethers_SOURCES) $(test_expr_SOURCES) \
201
 
        $(test_getpeercred_SOURCES) $(test_group_SOURCES) \
202
 
        $(test_hosts_SOURCES) $(test_myldap_SOURCES) \
203
 
        $(test_netgroup_SOURCES) $(test_networks_SOURCES) \
204
 
        $(test_nslcd_group_SOURCES) $(test_passwd_SOURCES) \
205
 
        $(test_protocols_SOURCES) $(test_rpc_SOURCES) \
206
 
        $(test_services_SOURCES) $(test_set_SOURCES) \
207
 
        $(test_shadow_SOURCES) $(test_tio_SOURCES)
 
117
SOURCES = $(test_cfg_SOURCES) $(test_common_SOURCES) \
 
118
        $(test_dict_SOURCES) $(test_expr_SOURCES) \
 
119
        $(test_getpeercred_SOURCES) $(test_myldap_SOURCES) \
 
120
        $(test_set_SOURCES) $(test_tio_SOURCES)
 
121
DIST_SOURCES = $(test_cfg_SOURCES) $(test_common_SOURCES) \
 
122
        $(test_dict_SOURCES) $(test_expr_SOURCES) \
 
123
        $(test_getpeercred_SOURCES) $(test_myldap_SOURCES) \
 
124
        $(test_set_SOURCES) $(test_tio_SOURCES)
208
125
ETAGS = etags
209
126
CTAGS = ctags
210
127
am__tty_colors = \
229
146
ECHO_N = @ECHO_N@
230
147
ECHO_T = @ECHO_T@
231
148
EGREP = @EGREP@
 
149
ENABLE_CONFIGFILE_CHECKING = @ENABLE_CONFIGFILE_CHECKING@
232
150
EXEEXT = @EXEEXT@
233
151
GREP = @GREP@
234
152
INSTALL = @INSTALL@
239
157
LDFLAGS = @LDFLAGS@
240
158
LIBOBJS = @LIBOBJS@
241
159
LIBS = @LIBS@
 
160
LN_S = @LN_S@
242
161
LTLIBOBJS = @LTLIBOBJS@
243
162
MAINT = @MAINT@
244
163
MAKEINFO = @MAKEINFO@
248
167
NSLCD_PIDFILE = @NSLCD_PIDFILE@
249
168
NSLCD_SOCKET = @NSLCD_SOCKET@
250
169
NSS_LDAP_SONAME = @NSS_LDAP_SONAME@
 
170
NSS_MODULE_OBJS = @NSS_MODULE_OBJS@
251
171
OBJEXT = @OBJEXT@
252
172
PACKAGE = @PACKAGE@
253
173
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
256
176
PACKAGE_TARNAME = @PACKAGE_TARNAME@
257
177
PACKAGE_URL = @PACKAGE_URL@
258
178
PACKAGE_VERSION = @PACKAGE_VERSION@
 
179
PAM_LDAP_SONAME = @PAM_LDAP_SONAME@
 
180
PAM_SECLIB_DIR = @PAM_SECLIB_DIR@
259
181
PATH_SEPARATOR = @PATH_SEPARATOR@
260
182
PTHREAD_CC = @PTHREAD_CC@
261
183
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
262
184
PTHREAD_LIBS = @PTHREAD_LIBS@
 
185
PYTHON = @PYTHON@
 
186
PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
 
187
PYTHON_PLATFORM = @PYTHON_PLATFORM@
 
188
PYTHON_PREFIX = @PYTHON_PREFIX@
 
189
PYTHON_VERSION = @PYTHON_VERSION@
263
190
RANLIB = @RANLIB@
264
191
RELEASE_MONTH = @RELEASE_MONTH@
265
192
SET_MAKE = @SET_MAKE@
266
193
SHELL = @SHELL@
267
194
STRIP = @STRIP@
268
195
VERSION = @VERSION@
269
 
VERSION_SCRIPT_FLAG = @VERSION_SCRIPT_FLAG@
270
196
abs_builddir = @abs_builddir@
271
197
abs_srcdir = @abs_srcdir@
272
198
abs_top_builddir = @abs_top_builddir@
306
232
mandir = @mandir@
307
233
mkdir_p = @mkdir_p@
308
234
nslcd_LIBS = @nslcd_LIBS@
 
235
nss_ldap_so_LDFLAGS = @nss_ldap_so_LDFLAGS@
 
236
nss_ldap_so_LINK = @nss_ldap_so_LINK@
309
237
oldincludedir = @oldincludedir@
 
238
pam_ldap_so_LDFLAGS = @pam_ldap_so_LDFLAGS@
 
239
pam_ldap_so_LINK = @pam_ldap_so_LINK@
310
240
pdfdir = @pdfdir@
 
241
pkgpyexecdir = @pkgpyexecdir@
 
242
pkgpythondir = @pkgpythondir@
311
243
prefix = @prefix@
312
244
program_transform_name = @program_transform_name@
313
245
psdir = @psdir@
 
246
pyexecdir = @pyexecdir@
 
247
pythondir = @pythondir@
314
248
sbindir = @sbindir@
315
249
sharedstatedir = @sharedstatedir@
316
250
srcdir = @srcdir@
323
257
top_build_prefix = @top_build_prefix@
324
258
top_builddir = @top_builddir@
325
259
top_srcdir = @top_srcdir@
326
 
EXTRA_DIST = nslcd-test.conf test_myldap.sh test_nsscmds.sh usernames.txt
 
260
EXTRA_DIST = nslcd-test.conf test_myldap.sh test_nsscmds.sh test_pamcmds.sh \
 
261
             in_testenv.sh test_pamcmds.expect usernames.txt
 
262
 
327
263
CLEANFILES = $(EXTRA_PROGRAMS)
328
264
AM_CPPFLAGS = -I$(top_srcdir)
329
265
AM_CFLAGS = $(PTHREAD_CFLAGS) -g
337
273
#test_dict_LDADD = ../common/dict.o
338
274
test_set_SOURCES = test_set.c ../common/set.h
339
275
test_set_LDADD = ../common/libdict.a
340
 
test_tio_SOURCES = test_tio.c ../common/tio.h ../common/tio.c
 
276
test_tio_SOURCES = test_tio.c common.h ../common/tio.h ../common/tio.c
341
277
test_tio_LDFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
342
 
test_cfg_SOURCES = test_cfg.c
343
 
test_cfg_LDADD = ../nslcd/log.o ../nslcd/attmap.o  \
344
 
                 ../nslcd/common.o ../nslcd/myldap.o \
345
 
                 ../nslcd/alias.o ../nslcd/ether.o ../nslcd/group.o \
346
 
                 ../nslcd/host.o ../nslcd/netgroup.o ../nslcd/network.o \
347
 
                 ../nslcd/passwd.o ../nslcd/protocol.o ../nslcd/rpc.o \
348
 
                 ../nslcd/service.o ../nslcd/shadow.o \
349
 
                 @nslcd_LIBS@ ../common/libtio.a ../common/libdict.a \
350
 
                 ../common/libexpr.a ../compat/libcompat.a
351
 
 
352
 
test_expr_SOURCES = test_expr.c
 
278
test_expr_SOURCES = test_expr.c common.h
353
279
test_expr_LDADD = ../common/set.o ../common/dict.o
354
 
test_myldap_SOURCES = test_myldap.c
355
 
test_myldap_LDADD = ../nslcd/log.o ../nslcd/common.o ../nslcd/cfg.o \
356
 
                    ../nslcd/alias.o ../nslcd/ether.o ../nslcd/group.o \
357
 
                    ../nslcd/host.o ../nslcd/netgroup.o ../nslcd/network.o \
358
 
                    ../nslcd/passwd.o ../nslcd/protocol.o ../nslcd/rpc.o \
359
 
                    ../nslcd/service.o ../nslcd/shadow.o \
360
 
                    ../nslcd/myldap.o @nslcd_LIBS@ ../common/libtio.a \
361
 
                    ../common/libdict.a ../compat/libcompat.a
362
 
 
363
 
test_getpeercred_SOURCES = test_getpeercred.c
 
280
test_getpeercred_SOURCES = test_getpeercred.c common.h
364
281
test_getpeercred_LDADD = ../compat/libcompat.a
365
 
test_common_SOURCES = test_common.c
366
 
test_common_LDADD = ../nslcd/log.o ../nslcd/common.o ../nslcd/cfg.o \
367
 
                    ../nslcd/alias.o ../nslcd/ether.o ../nslcd/group.o \
368
 
                    ../nslcd/host.o ../nslcd/netgroup.o ../nslcd/network.o \
369
 
                    ../nslcd/passwd.o ../nslcd/protocol.o ../nslcd/rpc.o \
370
 
                    ../nslcd/service.o ../nslcd/shadow.o \
371
 
                    ../nslcd/myldap.o @nslcd_LIBS@ ../common/libtio.a \
372
 
                    ../common/libdict.a ../compat/libcompat.a
373
 
 
374
 
common_SOURCES = ../common/nslcd-prot.c ../nslcd.h ../nss/prototypes.h \
375
 
                 ../common/tio.c ../common/tio.h ../nss/common.c
376
 
 
377
 
test_aliases_SOURCES = test_aliases.c ../nss/aliases.c $(common_SOURCES)
378
 
test_ethers_SOURCES = test_ethers.c ../nss/ethers.c $(common_SOURCES)
379
 
test_group_SOURCES = test_group.c ../nss/group.c $(common_SOURCES)
380
 
test_hosts_SOURCES = test_hosts.c ../nss/hosts.c $(common_SOURCES)
381
 
test_netgroup_SOURCES = test_netgroup.c ../nss/netgroup.c $(common_SOURCES)
382
 
test_networks_SOURCES = test_networks.c ../nss/networks.c $(common_SOURCES)
383
 
test_passwd_SOURCES = test_passwd.c ../nss/passwd.c $(common_SOURCES)
384
 
test_protocols_SOURCES = test_protocols.c ../nss/protocols.c $(common_SOURCES)
385
 
test_rpc_SOURCES = test_rpc.c ../nss/rpc.c $(common_SOURCES)
386
 
test_services_SOURCES = test_services.c ../nss/services.c $(common_SOURCES)
387
 
test_shadow_SOURCES = test_shadow.c ../nss/shadow.c $(common_SOURCES)
388
 
test_nslcd_group_SOURCES = test_nslcd_group.c
389
 
test_nslcd_group_LDADD = ../nslcd/log.o ../nslcd/attmap.o ../common/dict.o \
390
 
                         ../nslcd/common.o ../nslcd/myldap.o \
391
 
                         ../nslcd/alias.o ../nslcd/ether.o \
392
 
                         ../nslcd/host.o ../nslcd/netgroup.o ../nslcd/network.o \
393
 
                         ../nslcd/passwd.o ../nslcd/protocol.o ../nslcd/rpc.o \
394
 
                         ../nslcd/service.o ../nslcd/shadow.o \
395
 
                         @nslcd_LIBS@ ../common/libtio.a ../common/libdict.a \
396
 
                         ../compat/libcompat.a ../nslcd/cfg.o
397
 
 
 
282
 
 
283
# common objects that are included for the tests of nslcd functionality
 
284
common_nslcd_LDADD = ../nslcd/log.o ../nslcd/common.o \
 
285
                     ../nslcd/myldap.o ../nslcd/attmap.o ../nslcd/nsswitch.o \
 
286
                     ../nslcd/alias.o ../nslcd/ether.o ../nslcd/group.o \
 
287
                     ../nslcd/host.o ../nslcd/netgroup.o ../nslcd/network.o \
 
288
                     ../nslcd/passwd.o ../nslcd/protocol.o ../nslcd/rpc.o \
 
289
                     ../nslcd/service.o ../nslcd/shadow.o ../nslcd/pam.o \
 
290
                     ../common/libtio.a ../common/libdict.a \
 
291
                     ../common/libexpr.a ../compat/libcompat.a \
 
292
                     @nslcd_LIBS@ @PTHREAD_LIBS@
 
293
 
 
294
test_cfg_SOURCES = test_cfg.c common.h
 
295
test_cfg_LDADD = $(common_nslcd_LDADD)
 
296
test_myldap_SOURCES = test_myldap.c common.h
 
297
test_myldap_LDADD = ../nslcd/cfg.o $(common_nslcd_LDADD)
 
298
test_common_SOURCES = test_common.c ../nslcd/common.h
 
299
test_common_LDADD = ../nslcd/cfg.o $(common_nslcd_LDADD)
398
300
all: all-am
399
301
 
400
302
.SUFFIXES:
432
334
 
433
335
clean-checkPROGRAMS:
434
336
        -test -z "$(check_PROGRAMS)" || rm -f $(check_PROGRAMS)
435
 
test_aliases$(EXEEXT): $(test_aliases_OBJECTS) $(test_aliases_DEPENDENCIES) 
436
 
        @rm -f test_aliases$(EXEEXT)
437
 
        $(LINK) $(test_aliases_OBJECTS) $(test_aliases_LDADD) $(LIBS)
438
337
test_cfg$(EXEEXT): $(test_cfg_OBJECTS) $(test_cfg_DEPENDENCIES) 
439
338
        @rm -f test_cfg$(EXEEXT)
440
339
        $(LINK) $(test_cfg_OBJECTS) $(test_cfg_LDADD) $(LIBS)
444
343
test_dict$(EXEEXT): $(test_dict_OBJECTS) $(test_dict_DEPENDENCIES) 
445
344
        @rm -f test_dict$(EXEEXT)
446
345
        $(LINK) $(test_dict_OBJECTS) $(test_dict_LDADD) $(LIBS)
447
 
test_ethers$(EXEEXT): $(test_ethers_OBJECTS) $(test_ethers_DEPENDENCIES) 
448
 
        @rm -f test_ethers$(EXEEXT)
449
 
        $(LINK) $(test_ethers_OBJECTS) $(test_ethers_LDADD) $(LIBS)
450
346
test_expr$(EXEEXT): $(test_expr_OBJECTS) $(test_expr_DEPENDENCIES) 
451
347
        @rm -f test_expr$(EXEEXT)
452
348
        $(LINK) $(test_expr_OBJECTS) $(test_expr_LDADD) $(LIBS)
453
349
test_getpeercred$(EXEEXT): $(test_getpeercred_OBJECTS) $(test_getpeercred_DEPENDENCIES) 
454
350
        @rm -f test_getpeercred$(EXEEXT)
455
351
        $(LINK) $(test_getpeercred_OBJECTS) $(test_getpeercred_LDADD) $(LIBS)
456
 
test_group$(EXEEXT): $(test_group_OBJECTS) $(test_group_DEPENDENCIES) 
457
 
        @rm -f test_group$(EXEEXT)
458
 
        $(LINK) $(test_group_OBJECTS) $(test_group_LDADD) $(LIBS)
459
 
test_hosts$(EXEEXT): $(test_hosts_OBJECTS) $(test_hosts_DEPENDENCIES) 
460
 
        @rm -f test_hosts$(EXEEXT)
461
 
        $(LINK) $(test_hosts_OBJECTS) $(test_hosts_LDADD) $(LIBS)
462
352
test_myldap$(EXEEXT): $(test_myldap_OBJECTS) $(test_myldap_DEPENDENCIES) 
463
353
        @rm -f test_myldap$(EXEEXT)
464
354
        $(LINK) $(test_myldap_OBJECTS) $(test_myldap_LDADD) $(LIBS)
465
 
test_netgroup$(EXEEXT): $(test_netgroup_OBJECTS) $(test_netgroup_DEPENDENCIES) 
466
 
        @rm -f test_netgroup$(EXEEXT)
467
 
        $(LINK) $(test_netgroup_OBJECTS) $(test_netgroup_LDADD) $(LIBS)
468
 
test_networks$(EXEEXT): $(test_networks_OBJECTS) $(test_networks_DEPENDENCIES) 
469
 
        @rm -f test_networks$(EXEEXT)
470
 
        $(LINK) $(test_networks_OBJECTS) $(test_networks_LDADD) $(LIBS)
471
 
test_nslcd_group$(EXEEXT): $(test_nslcd_group_OBJECTS) $(test_nslcd_group_DEPENDENCIES) 
472
 
        @rm -f test_nslcd_group$(EXEEXT)
473
 
        $(LINK) $(test_nslcd_group_OBJECTS) $(test_nslcd_group_LDADD) $(LIBS)
474
 
test_passwd$(EXEEXT): $(test_passwd_OBJECTS) $(test_passwd_DEPENDENCIES) 
475
 
        @rm -f test_passwd$(EXEEXT)
476
 
        $(LINK) $(test_passwd_OBJECTS) $(test_passwd_LDADD) $(LIBS)
477
 
test_protocols$(EXEEXT): $(test_protocols_OBJECTS) $(test_protocols_DEPENDENCIES) 
478
 
        @rm -f test_protocols$(EXEEXT)
479
 
        $(LINK) $(test_protocols_OBJECTS) $(test_protocols_LDADD) $(LIBS)
480
 
test_rpc$(EXEEXT): $(test_rpc_OBJECTS) $(test_rpc_DEPENDENCIES) 
481
 
        @rm -f test_rpc$(EXEEXT)
482
 
        $(LINK) $(test_rpc_OBJECTS) $(test_rpc_LDADD) $(LIBS)
483
 
test_services$(EXEEXT): $(test_services_OBJECTS) $(test_services_DEPENDENCIES) 
484
 
        @rm -f test_services$(EXEEXT)
485
 
        $(LINK) $(test_services_OBJECTS) $(test_services_LDADD) $(LIBS)
486
355
test_set$(EXEEXT): $(test_set_OBJECTS) $(test_set_DEPENDENCIES) 
487
356
        @rm -f test_set$(EXEEXT)
488
357
        $(LINK) $(test_set_OBJECTS) $(test_set_LDADD) $(LIBS)
489
 
test_shadow$(EXEEXT): $(test_shadow_OBJECTS) $(test_shadow_DEPENDENCIES) 
490
 
        @rm -f test_shadow$(EXEEXT)
491
 
        $(LINK) $(test_shadow_OBJECTS) $(test_shadow_LDADD) $(LIBS)
492
358
test_tio$(EXEEXT): $(test_tio_OBJECTS) $(test_tio_DEPENDENCIES) 
493
359
        @rm -f test_tio$(EXEEXT)
494
360
        $(test_tio_LINK) $(test_tio_OBJECTS) $(test_tio_LDADD) $(LIBS)
499
365
distclean-compile:
500
366
        -rm -f *.tab.c
501
367
 
502
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aliases.Po@am__quote@
503
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common.Po@am__quote@
504
368
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dict.Po@am__quote@
505
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ethers.Po@am__quote@
506
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/group.Po@am__quote@
507
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hosts.Po@am__quote@
508
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netgroup.Po@am__quote@
509
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/networks.Po@am__quote@
510
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nslcd-prot.Po@am__quote@
511
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/passwd.Po@am__quote@
512
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/protocols.Po@am__quote@
513
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rpc.Po@am__quote@
514
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/services.Po@am__quote@
515
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shadow.Po@am__quote@
516
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_aliases.Po@am__quote@
517
369
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_cfg.Po@am__quote@
518
370
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_common.Po@am__quote@
519
371
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_dict.Po@am__quote@
520
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ethers.Po@am__quote@
521
372
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_expr.Po@am__quote@
522
373
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_getpeercred.Po@am__quote@
523
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_group.Po@am__quote@
524
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_hosts.Po@am__quote@
525
374
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_myldap.Po@am__quote@
526
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_netgroup.Po@am__quote@
527
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_networks.Po@am__quote@
528
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_nslcd_group.Po@am__quote@
529
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_passwd.Po@am__quote@
530
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_protocols.Po@am__quote@
531
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_rpc.Po@am__quote@
532
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_services.Po@am__quote@
533
375
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_set.Po@am__quote@
534
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_shadow.Po@am__quote@
535
376
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_tio.Po@am__quote@
536
377
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tio.Po@am__quote@
537
378
 
549
390
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
550
391
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
551
392
 
552
 
aliases.o: ../nss/aliases.c
553
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aliases.o -MD -MP -MF $(DEPDIR)/aliases.Tpo -c -o aliases.o `test -f '../nss/aliases.c' || echo '$(srcdir)/'`../nss/aliases.c
554
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/aliases.Tpo $(DEPDIR)/aliases.Po
555
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/aliases.c' object='aliases.o' libtool=no @AMDEPBACKSLASH@
556
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
557
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aliases.o `test -f '../nss/aliases.c' || echo '$(srcdir)/'`../nss/aliases.c
558
 
 
559
 
aliases.obj: ../nss/aliases.c
560
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aliases.obj -MD -MP -MF $(DEPDIR)/aliases.Tpo -c -o aliases.obj `if test -f '../nss/aliases.c'; then $(CYGPATH_W) '../nss/aliases.c'; else $(CYGPATH_W) '$(srcdir)/../nss/aliases.c'; fi`
561
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/aliases.Tpo $(DEPDIR)/aliases.Po
562
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/aliases.c' object='aliases.obj' libtool=no @AMDEPBACKSLASH@
563
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
564
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aliases.obj `if test -f '../nss/aliases.c'; then $(CYGPATH_W) '../nss/aliases.c'; else $(CYGPATH_W) '$(srcdir)/../nss/aliases.c'; fi`
565
 
 
566
 
nslcd-prot.o: ../common/nslcd-prot.c
567
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nslcd-prot.o -MD -MP -MF $(DEPDIR)/nslcd-prot.Tpo -c -o nslcd-prot.o `test -f '../common/nslcd-prot.c' || echo '$(srcdir)/'`../common/nslcd-prot.c
568
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/nslcd-prot.Tpo $(DEPDIR)/nslcd-prot.Po
569
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../common/nslcd-prot.c' object='nslcd-prot.o' libtool=no @AMDEPBACKSLASH@
570
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
571
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nslcd-prot.o `test -f '../common/nslcd-prot.c' || echo '$(srcdir)/'`../common/nslcd-prot.c
572
 
 
573
 
nslcd-prot.obj: ../common/nslcd-prot.c
574
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nslcd-prot.obj -MD -MP -MF $(DEPDIR)/nslcd-prot.Tpo -c -o nslcd-prot.obj `if test -f '../common/nslcd-prot.c'; then $(CYGPATH_W) '../common/nslcd-prot.c'; else $(CYGPATH_W) '$(srcdir)/../common/nslcd-prot.c'; fi`
575
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/nslcd-prot.Tpo $(DEPDIR)/nslcd-prot.Po
576
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../common/nslcd-prot.c' object='nslcd-prot.obj' libtool=no @AMDEPBACKSLASH@
577
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
578
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nslcd-prot.obj `if test -f '../common/nslcd-prot.c'; then $(CYGPATH_W) '../common/nslcd-prot.c'; else $(CYGPATH_W) '$(srcdir)/../common/nslcd-prot.c'; fi`
 
393
dict.o: ../common/dict.c
 
394
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dict.o -MD -MP -MF $(DEPDIR)/dict.Tpo -c -o dict.o `test -f '../common/dict.c' || echo '$(srcdir)/'`../common/dict.c
 
395
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/dict.Tpo $(DEPDIR)/dict.Po
 
396
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../common/dict.c' object='dict.o' libtool=no @AMDEPBACKSLASH@
 
397
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
398
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dict.o `test -f '../common/dict.c' || echo '$(srcdir)/'`../common/dict.c
 
399
 
 
400
dict.obj: ../common/dict.c
 
401
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dict.obj -MD -MP -MF $(DEPDIR)/dict.Tpo -c -o dict.obj `if test -f '../common/dict.c'; then $(CYGPATH_W) '../common/dict.c'; else $(CYGPATH_W) '$(srcdir)/../common/dict.c'; fi`
 
402
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/dict.Tpo $(DEPDIR)/dict.Po
 
403
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../common/dict.c' object='dict.obj' libtool=no @AMDEPBACKSLASH@
 
404
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
405
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dict.obj `if test -f '../common/dict.c'; then $(CYGPATH_W) '../common/dict.c'; else $(CYGPATH_W) '$(srcdir)/../common/dict.c'; fi`
579
406
 
580
407
tio.o: ../common/tio.c
581
408
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tio.o -MD -MP -MF $(DEPDIR)/tio.Tpo -c -o tio.o `test -f '../common/tio.c' || echo '$(srcdir)/'`../common/tio.c
591
418
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
592
419
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tio.obj `if test -f '../common/tio.c'; then $(CYGPATH_W) '../common/tio.c'; else $(CYGPATH_W) '$(srcdir)/../common/tio.c'; fi`
593
420
 
594
 
common.o: ../nss/common.c
595
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT common.o -MD -MP -MF $(DEPDIR)/common.Tpo -c -o common.o `test -f '../nss/common.c' || echo '$(srcdir)/'`../nss/common.c
596
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/common.Tpo $(DEPDIR)/common.Po
597
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/common.c' object='common.o' libtool=no @AMDEPBACKSLASH@
598
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
599
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o common.o `test -f '../nss/common.c' || echo '$(srcdir)/'`../nss/common.c
600
 
 
601
 
common.obj: ../nss/common.c
602
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT common.obj -MD -MP -MF $(DEPDIR)/common.Tpo -c -o common.obj `if test -f '../nss/common.c'; then $(CYGPATH_W) '../nss/common.c'; else $(CYGPATH_W) '$(srcdir)/../nss/common.c'; fi`
603
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/common.Tpo $(DEPDIR)/common.Po
604
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/common.c' object='common.obj' libtool=no @AMDEPBACKSLASH@
605
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
606
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o common.obj `if test -f '../nss/common.c'; then $(CYGPATH_W) '../nss/common.c'; else $(CYGPATH_W) '$(srcdir)/../nss/common.c'; fi`
607
 
 
608
 
dict.o: ../common/dict.c
609
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dict.o -MD -MP -MF $(DEPDIR)/dict.Tpo -c -o dict.o `test -f '../common/dict.c' || echo '$(srcdir)/'`../common/dict.c
610
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/dict.Tpo $(DEPDIR)/dict.Po
611
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../common/dict.c' object='dict.o' libtool=no @AMDEPBACKSLASH@
612
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
613
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dict.o `test -f '../common/dict.c' || echo '$(srcdir)/'`../common/dict.c
614
 
 
615
 
dict.obj: ../common/dict.c
616
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dict.obj -MD -MP -MF $(DEPDIR)/dict.Tpo -c -o dict.obj `if test -f '../common/dict.c'; then $(CYGPATH_W) '../common/dict.c'; else $(CYGPATH_W) '$(srcdir)/../common/dict.c'; fi`
617
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/dict.Tpo $(DEPDIR)/dict.Po
618
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../common/dict.c' object='dict.obj' libtool=no @AMDEPBACKSLASH@
619
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
620
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dict.obj `if test -f '../common/dict.c'; then $(CYGPATH_W) '../common/dict.c'; else $(CYGPATH_W) '$(srcdir)/../common/dict.c'; fi`
621
 
 
622
 
ethers.o: ../nss/ethers.c
623
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ethers.o -MD -MP -MF $(DEPDIR)/ethers.Tpo -c -o ethers.o `test -f '../nss/ethers.c' || echo '$(srcdir)/'`../nss/ethers.c
624
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/ethers.Tpo $(DEPDIR)/ethers.Po
625
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/ethers.c' object='ethers.o' libtool=no @AMDEPBACKSLASH@
626
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
627
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ethers.o `test -f '../nss/ethers.c' || echo '$(srcdir)/'`../nss/ethers.c
628
 
 
629
 
ethers.obj: ../nss/ethers.c
630
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ethers.obj -MD -MP -MF $(DEPDIR)/ethers.Tpo -c -o ethers.obj `if test -f '../nss/ethers.c'; then $(CYGPATH_W) '../nss/ethers.c'; else $(CYGPATH_W) '$(srcdir)/../nss/ethers.c'; fi`
631
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/ethers.Tpo $(DEPDIR)/ethers.Po
632
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/ethers.c' object='ethers.obj' libtool=no @AMDEPBACKSLASH@
633
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
634
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ethers.obj `if test -f '../nss/ethers.c'; then $(CYGPATH_W) '../nss/ethers.c'; else $(CYGPATH_W) '$(srcdir)/../nss/ethers.c'; fi`
635
 
 
636
 
group.o: ../nss/group.c
637
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT group.o -MD -MP -MF $(DEPDIR)/group.Tpo -c -o group.o `test -f '../nss/group.c' || echo '$(srcdir)/'`../nss/group.c
638
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/group.Tpo $(DEPDIR)/group.Po
639
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/group.c' object='group.o' libtool=no @AMDEPBACKSLASH@
640
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
641
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o group.o `test -f '../nss/group.c' || echo '$(srcdir)/'`../nss/group.c
642
 
 
643
 
group.obj: ../nss/group.c
644
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT group.obj -MD -MP -MF $(DEPDIR)/group.Tpo -c -o group.obj `if test -f '../nss/group.c'; then $(CYGPATH_W) '../nss/group.c'; else $(CYGPATH_W) '$(srcdir)/../nss/group.c'; fi`
645
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/group.Tpo $(DEPDIR)/group.Po
646
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/group.c' object='group.obj' libtool=no @AMDEPBACKSLASH@
647
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
648
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o group.obj `if test -f '../nss/group.c'; then $(CYGPATH_W) '../nss/group.c'; else $(CYGPATH_W) '$(srcdir)/../nss/group.c'; fi`
649
 
 
650
 
hosts.o: ../nss/hosts.c
651
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hosts.o -MD -MP -MF $(DEPDIR)/hosts.Tpo -c -o hosts.o `test -f '../nss/hosts.c' || echo '$(srcdir)/'`../nss/hosts.c
652
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/hosts.Tpo $(DEPDIR)/hosts.Po
653
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/hosts.c' object='hosts.o' libtool=no @AMDEPBACKSLASH@
654
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
655
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hosts.o `test -f '../nss/hosts.c' || echo '$(srcdir)/'`../nss/hosts.c
656
 
 
657
 
hosts.obj: ../nss/hosts.c
658
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hosts.obj -MD -MP -MF $(DEPDIR)/hosts.Tpo -c -o hosts.obj `if test -f '../nss/hosts.c'; then $(CYGPATH_W) '../nss/hosts.c'; else $(CYGPATH_W) '$(srcdir)/../nss/hosts.c'; fi`
659
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/hosts.Tpo $(DEPDIR)/hosts.Po
660
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/hosts.c' object='hosts.obj' libtool=no @AMDEPBACKSLASH@
661
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
662
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hosts.obj `if test -f '../nss/hosts.c'; then $(CYGPATH_W) '../nss/hosts.c'; else $(CYGPATH_W) '$(srcdir)/../nss/hosts.c'; fi`
663
 
 
664
 
netgroup.o: ../nss/netgroup.c
665
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT netgroup.o -MD -MP -MF $(DEPDIR)/netgroup.Tpo -c -o netgroup.o `test -f '../nss/netgroup.c' || echo '$(srcdir)/'`../nss/netgroup.c
666
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/netgroup.Tpo $(DEPDIR)/netgroup.Po
667
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/netgroup.c' object='netgroup.o' libtool=no @AMDEPBACKSLASH@
668
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
669
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o netgroup.o `test -f '../nss/netgroup.c' || echo '$(srcdir)/'`../nss/netgroup.c
670
 
 
671
 
netgroup.obj: ../nss/netgroup.c
672
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT netgroup.obj -MD -MP -MF $(DEPDIR)/netgroup.Tpo -c -o netgroup.obj `if test -f '../nss/netgroup.c'; then $(CYGPATH_W) '../nss/netgroup.c'; else $(CYGPATH_W) '$(srcdir)/../nss/netgroup.c'; fi`
673
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/netgroup.Tpo $(DEPDIR)/netgroup.Po
674
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/netgroup.c' object='netgroup.obj' libtool=no @AMDEPBACKSLASH@
675
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
676
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o netgroup.obj `if test -f '../nss/netgroup.c'; then $(CYGPATH_W) '../nss/netgroup.c'; else $(CYGPATH_W) '$(srcdir)/../nss/netgroup.c'; fi`
677
 
 
678
 
networks.o: ../nss/networks.c
679
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT networks.o -MD -MP -MF $(DEPDIR)/networks.Tpo -c -o networks.o `test -f '../nss/networks.c' || echo '$(srcdir)/'`../nss/networks.c
680
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/networks.Tpo $(DEPDIR)/networks.Po
681
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/networks.c' object='networks.o' libtool=no @AMDEPBACKSLASH@
682
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
683
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o networks.o `test -f '../nss/networks.c' || echo '$(srcdir)/'`../nss/networks.c
684
 
 
685
 
networks.obj: ../nss/networks.c
686
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT networks.obj -MD -MP -MF $(DEPDIR)/networks.Tpo -c -o networks.obj `if test -f '../nss/networks.c'; then $(CYGPATH_W) '../nss/networks.c'; else $(CYGPATH_W) '$(srcdir)/../nss/networks.c'; fi`
687
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/networks.Tpo $(DEPDIR)/networks.Po
688
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/networks.c' object='networks.obj' libtool=no @AMDEPBACKSLASH@
689
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
690
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o networks.obj `if test -f '../nss/networks.c'; then $(CYGPATH_W) '../nss/networks.c'; else $(CYGPATH_W) '$(srcdir)/../nss/networks.c'; fi`
691
 
 
692
 
passwd.o: ../nss/passwd.c
693
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT passwd.o -MD -MP -MF $(DEPDIR)/passwd.Tpo -c -o passwd.o `test -f '../nss/passwd.c' || echo '$(srcdir)/'`../nss/passwd.c
694
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/passwd.Tpo $(DEPDIR)/passwd.Po
695
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/passwd.c' object='passwd.o' libtool=no @AMDEPBACKSLASH@
696
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
697
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o passwd.o `test -f '../nss/passwd.c' || echo '$(srcdir)/'`../nss/passwd.c
698
 
 
699
 
passwd.obj: ../nss/passwd.c
700
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT passwd.obj -MD -MP -MF $(DEPDIR)/passwd.Tpo -c -o passwd.obj `if test -f '../nss/passwd.c'; then $(CYGPATH_W) '../nss/passwd.c'; else $(CYGPATH_W) '$(srcdir)/../nss/passwd.c'; fi`
701
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/passwd.Tpo $(DEPDIR)/passwd.Po
702
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/passwd.c' object='passwd.obj' libtool=no @AMDEPBACKSLASH@
703
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
704
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o passwd.obj `if test -f '../nss/passwd.c'; then $(CYGPATH_W) '../nss/passwd.c'; else $(CYGPATH_W) '$(srcdir)/../nss/passwd.c'; fi`
705
 
 
706
 
protocols.o: ../nss/protocols.c
707
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT protocols.o -MD -MP -MF $(DEPDIR)/protocols.Tpo -c -o protocols.o `test -f '../nss/protocols.c' || echo '$(srcdir)/'`../nss/protocols.c
708
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/protocols.Tpo $(DEPDIR)/protocols.Po
709
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/protocols.c' object='protocols.o' libtool=no @AMDEPBACKSLASH@
710
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
711
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o protocols.o `test -f '../nss/protocols.c' || echo '$(srcdir)/'`../nss/protocols.c
712
 
 
713
 
protocols.obj: ../nss/protocols.c
714
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT protocols.obj -MD -MP -MF $(DEPDIR)/protocols.Tpo -c -o protocols.obj `if test -f '../nss/protocols.c'; then $(CYGPATH_W) '../nss/protocols.c'; else $(CYGPATH_W) '$(srcdir)/../nss/protocols.c'; fi`
715
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/protocols.Tpo $(DEPDIR)/protocols.Po
716
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/protocols.c' object='protocols.obj' libtool=no @AMDEPBACKSLASH@
717
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
718
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o protocols.obj `if test -f '../nss/protocols.c'; then $(CYGPATH_W) '../nss/protocols.c'; else $(CYGPATH_W) '$(srcdir)/../nss/protocols.c'; fi`
719
 
 
720
 
rpc.o: ../nss/rpc.c
721
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rpc.o -MD -MP -MF $(DEPDIR)/rpc.Tpo -c -o rpc.o `test -f '../nss/rpc.c' || echo '$(srcdir)/'`../nss/rpc.c
722
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/rpc.Tpo $(DEPDIR)/rpc.Po
723
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/rpc.c' object='rpc.o' libtool=no @AMDEPBACKSLASH@
724
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
725
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rpc.o `test -f '../nss/rpc.c' || echo '$(srcdir)/'`../nss/rpc.c
726
 
 
727
 
rpc.obj: ../nss/rpc.c
728
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rpc.obj -MD -MP -MF $(DEPDIR)/rpc.Tpo -c -o rpc.obj `if test -f '../nss/rpc.c'; then $(CYGPATH_W) '../nss/rpc.c'; else $(CYGPATH_W) '$(srcdir)/../nss/rpc.c'; fi`
729
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/rpc.Tpo $(DEPDIR)/rpc.Po
730
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/rpc.c' object='rpc.obj' libtool=no @AMDEPBACKSLASH@
731
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
732
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rpc.obj `if test -f '../nss/rpc.c'; then $(CYGPATH_W) '../nss/rpc.c'; else $(CYGPATH_W) '$(srcdir)/../nss/rpc.c'; fi`
733
 
 
734
 
services.o: ../nss/services.c
735
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT services.o -MD -MP -MF $(DEPDIR)/services.Tpo -c -o services.o `test -f '../nss/services.c' || echo '$(srcdir)/'`../nss/services.c
736
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/services.Tpo $(DEPDIR)/services.Po
737
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/services.c' object='services.o' libtool=no @AMDEPBACKSLASH@
738
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
739
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o services.o `test -f '../nss/services.c' || echo '$(srcdir)/'`../nss/services.c
740
 
 
741
 
services.obj: ../nss/services.c
742
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT services.obj -MD -MP -MF $(DEPDIR)/services.Tpo -c -o services.obj `if test -f '../nss/services.c'; then $(CYGPATH_W) '../nss/services.c'; else $(CYGPATH_W) '$(srcdir)/../nss/services.c'; fi`
743
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/services.Tpo $(DEPDIR)/services.Po
744
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/services.c' object='services.obj' libtool=no @AMDEPBACKSLASH@
745
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
746
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o services.obj `if test -f '../nss/services.c'; then $(CYGPATH_W) '../nss/services.c'; else $(CYGPATH_W) '$(srcdir)/../nss/services.c'; fi`
747
 
 
748
 
shadow.o: ../nss/shadow.c
749
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shadow.o -MD -MP -MF $(DEPDIR)/shadow.Tpo -c -o shadow.o `test -f '../nss/shadow.c' || echo '$(srcdir)/'`../nss/shadow.c
750
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/shadow.Tpo $(DEPDIR)/shadow.Po
751
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/shadow.c' object='shadow.o' libtool=no @AMDEPBACKSLASH@
752
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
753
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o shadow.o `test -f '../nss/shadow.c' || echo '$(srcdir)/'`../nss/shadow.c
754
 
 
755
 
shadow.obj: ../nss/shadow.c
756
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shadow.obj -MD -MP -MF $(DEPDIR)/shadow.Tpo -c -o shadow.obj `if test -f '../nss/shadow.c'; then $(CYGPATH_W) '../nss/shadow.c'; else $(CYGPATH_W) '$(srcdir)/../nss/shadow.c'; fi`
757
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/shadow.Tpo $(DEPDIR)/shadow.Po
758
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='../nss/shadow.c' object='shadow.obj' libtool=no @AMDEPBACKSLASH@
759
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
760
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o shadow.obj `if test -f '../nss/shadow.c'; then $(CYGPATH_W) '../nss/shadow.c'; else $(CYGPATH_W) '$(srcdir)/../nss/shadow.c'; fi`
761
 
 
762
421
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
763
422
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
764
423
        unique=`for i in $$list; do \