|
|
1.1 root 1: ###############################################################################
2: # Instructions to Make, for compilation of ISODE DSAP common processes
3: ###############################################################################
4:
5: ###############################################################################
6: #
7: # $Header: /f/osi/dsap/common/RCS/Makefile,v 7.1 90/07/09 14:33:40 mrose Exp $
8: #
9: #
10: # $Log: Makefile,v $
11: # Revision 7.1 90/07/09 14:33:40 mrose
12: # sync
13: #
14: # Revision 7.0 89/11/23 21:41:26 mrose
15: # Release 6.0
16: #
17: ###############################################################################
18:
19: ###############################################################################
20: #
21: # NOTICE
22: #
23: # Acquisition, use, and distribution of this module and related
24: # materials are subject to the restrictions of a license agreement.
25: # Consult the Preface in the User's Manual for the full terms of
26: # this agreement.
27: #
28: ###############################################################################
29:
30: UPDIR = ../
31:
32: LIBES = libcommon.a $(UPDIR)libcommon.a
33: LLIBS = $(TOPDIR)llib-lisode
34:
35:
36: #######################################################################
37: # Here is it...
38: #######################################################################
39:
40: all: libcommon
41: inst-all: libcommon
42: install: inst-all clean
43: lint: l-libcommon
44:
45:
46: #######################################################################
47: # libcommon
48: #######################################################################
49:
50: CFILES = acl.c attrv.c ca.c \
51: dn_seq.c ds_error.c dsa_info.c \
52: entryinfo.c filter.c oid.c oid2.c oidseq.c oc.c \
53: parse_error.c pe.c picture.c psap.c \
54: tree_struct.c util.c \
55: correlate.c std_sntx.c quipu_sntx.c \
56: file_print.c file_enc.c file_cpy.c file_str.c \
57: attrt_cmp.c attrt_dec.c attrt_new.c attrt_cpy.c \
58: attrt_free.c attrt_print.c \
59: as_cmp.c as_cpy.c as_del.c as_merge.c \
60: as_new.c as_free.c as_find.c as_print.c as_str.c \
61: avs_cmp.c avs_cpy.c avs_del.c avs_merge.c \
62: avs_new.c avs_free.c avs_print.c avs_str.c \
63: dn_cmp.c dn_cpy.c dn_append.c \
64: dn_free.c dn_print.c dn_str.c dn_new.c \
65: rdn_cmp.c rdn_cpy.c rdn_new.c \
66: rdn_free.c rdn_print.c rdn_str.c rdn_merge.c \
67: time.c integer.c boolean.c string.c mailbox.c fax.c \
68: post.c telex.c teletex.c pdm.c guide.c soundex.c \
69: conf.c sys_tai.c sys_init.c tai_init.c tai_args.c \
70: certificate.c cpair.c revoke.c protected.c \
71: cache.c entry.c parse.c ufn_aet.c ufn_parse.c \
72: aetufn.c aetdap.c nrs_info.c
73:
74: OFILES = acl.o attrv.o ca.o \
75: dn_seq.o ds_error.o dsa_info.o \
76: entryinfo.o filter.o oid.o oid2.o oidseq.o oc.o \
77: parse_error.o pe.o picture.o psap.o \
78: tree_struct.o util.o \
79: correlate.o std_sntx.o quipu_sntx.o \
80: file_print.o file_enc.o file_cpy.o file_str.o \
81: attrt_cmp.o attrt_dec.o attrt_new.o attrt_cpy.o \
82: attrt_free.o attrt_print.o \
83: as_cmp.o as_cpy.o as_del.o as_merge.o \
84: as_new.o as_free.o as_find.o as_print.o as_str.o \
85: avs_cmp.o avs_cpy.o avs_del.o avs_merge.o \
86: avs_new.o avs_free.o avs_print.o avs_str.o \
87: dn_cmp.o dn_cpy.o dn_append.o \
88: dn_free.o dn_print.o dn_str.o dn_new.o \
89: rdn_cmp.o rdn_cpy.o rdn_new.o \
90: rdn_free.o rdn_print.o rdn_str.o rdn_merge.o \
91: time.o integer.o boolean.o string.o mailbox.o fax.o \
92: post.o telex.o teletex.o pdm.o guide.o soundex.o \
93: conf.o sys_tai.o sys_init.o tai_init.o tai_args.o \
94: certificate.o cpair.o revoke.o protected.o \
95: cache.o entry.o parse.o ufn_aet.o ufn_parse.o \
96: aetufn.o aetdap.o nrs_info.o
97:
98: libcommon: libcommon.a
99:
100: libcommon.a: commonvrsn.o
101: -rm -f $@
102: @$(UTILDIR)make-lib.sh $(SYSTEM) $(ARFLAGS) $@ $(OFILES) \
103: commonvrsn.o
104: -@rm -f $(UPDIR)libcommon.a $(UPDIR)llib-lcommon
105: -@ln libcommon.a $(UPDIR)libcommon.a
106: -@$(LN) llib-lcommon $(UPDIR)llib-lcommon
107: -@ls -l $@
108: -@echo "QUIPU COMMON library built normally"
109:
110: commonvrsn.c: $(OFILES)
111: @$(UTILDIR)version.sh common > $@
112:
113: l-libcommon: $(CFILES) true
114: $(LINT) $(LFLAGS) $(CFILES) $(LLIBS)
115:
116: test: test.o libcommon.a ../libx500as.a
117: $(LDCC) test.o libcommon.a ../libx500as.a libcommon.a $(TOPDIR)libisode.a -o test
118:
119: ############################################################
120: # clean
121: ############################################################
122:
123: saber_src:; #load $(OPTIONS) $(CFILES)
124:
125: saber_obj:; #load libcommon.a
126:
127: ############################################################
128: # clean
129: ############################################################
130:
131: clean:; rm -f *.ph *.o *.a a.out _* test x* z* *.orig core commonvrsn.c
132:
133: grind:; iprint Makefile
134: tgrind -lc $(CFILES) llib-lcommon
135:
136: true:;
137:
138: # DO NOT DELETE THIS LINE
139: # Dependencies follow
140: acl.o: ../../h/cmd_srch.h
141: acl.o: ../../h/config.h
142: acl.o: ../../h/general.h
143: acl.o: ../../h/isoaddrs.h
144: acl.o: ../../h/logger.h
145: acl.o: ../../h/manifest.h
146: acl.o: ../../h/psap.h
147: acl.o: ../../h/quipu/attr.h
148: acl.o: ../../h/quipu/attrvalue.h
149: acl.o: ../../h/quipu/config.h
150: acl.o: ../../h/quipu/dsp.h
151: acl.o: ../../h/quipu/entry.h
152: acl.o: ../../h/quipu/name.h
153: acl.o: ../../h/quipu/oid.h
154: acl.o: ../../h/quipu/util.h
155: aetdap.o: ../../h/config.h
156: aetdap.o: ../../h/general.h
157: aetdap.o: ../../h/isoaddrs.h
158: aetdap.o: ../../h/logger.h
159: aetdap.o: ../../h/manifest.h
160: aetdap.o: ../../h/psap.h
161: aetdap.o: ../../h/quipu/attr.h
162: aetdap.o: ../../h/quipu/attrvalue.h
163: aetdap.o: ../../h/quipu/authen.h
164: aetdap.o: ../../h/quipu/bind.h
165: aetdap.o: ../../h/quipu/commonarg.h
166: aetdap.o: ../../h/quipu/config.h
167: aetdap.o: ../../h/quipu/dap.h
168: aetdap.o: ../../h/quipu/ds_error.h
169: aetdap.o: ../../h/quipu/dsp.h
170: aetdap.o: ../../h/quipu/dua.h
171: aetdap.o: ../../h/quipu/name.h
172: aetdap.o: ../../h/quipu/oid.h
173: aetdap.o: ../../h/quipu/read.h
174: aetdap.o: ../../h/quipu/util.h
175: aetdap.o: ../../h/tailor.h
176: aetufn.o: ../../h/config.h
177: aetufn.o: ../../h/general.h
178: aetufn.o: ../../h/isoaddrs.h
179: aetufn.o: ../../h/logger.h
180: aetufn.o: ../../h/manifest.h
181: aetufn.o: ../../h/psap.h
182: aetufn.o: ../../h/quipu/attr.h
183: aetufn.o: ../../h/quipu/attrvalue.h
184: aetufn.o: ../../h/quipu/authen.h
185: aetufn.o: ../../h/quipu/bind.h
186: aetufn.o: ../../h/quipu/commonarg.h
187: aetufn.o: ../../h/quipu/config.h
188: aetufn.o: ../../h/quipu/dap.h
189: aetufn.o: ../../h/quipu/ds_error.h
190: aetufn.o: ../../h/quipu/dsp.h
191: aetufn.o: ../../h/quipu/dua.h
192: aetufn.o: ../../h/quipu/entry.h
193: aetufn.o: ../../h/quipu/name.h
194: aetufn.o: ../../h/quipu/oid.h
195: aetufn.o: ../../h/quipu/read.h
196: aetufn.o: ../../h/quipu/ufn.h
197: aetufn.o: ../../h/quipu/util.h
198: aetufn.o: ../../h/tailor.h
199: as_cmp.o: ../../h/config.h
200: as_cmp.o: ../../h/general.h
201: as_cmp.o: ../../h/logger.h
202: as_cmp.o: ../../h/manifest.h
203: as_cmp.o: ../../h/psap.h
204: as_cmp.o: ../../h/quipu/attr.h
205: as_cmp.o: ../../h/quipu/attrvalue.h
206: as_cmp.o: ../../h/quipu/config.h
207: as_cmp.o: ../../h/quipu/name.h
208: as_cmp.o: ../../h/quipu/oid.h
209: as_cmp.o: ../../h/quipu/util.h
210: as_cpy.o: ../../h/config.h
211: as_cpy.o: ../../h/general.h
212: as_cpy.o: ../../h/logger.h
213: as_cpy.o: ../../h/manifest.h
214: as_cpy.o: ../../h/psap.h
215: as_cpy.o: ../../h/quipu/attr.h
216: as_cpy.o: ../../h/quipu/attrvalue.h
217: as_cpy.o: ../../h/quipu/config.h
218: as_cpy.o: ../../h/quipu/malloc.h
219: as_cpy.o: ../../h/quipu/name.h
220: as_cpy.o: ../../h/quipu/oid.h
221: as_cpy.o: ../../h/quipu/util.h
222: as_del.o: ../../h/config.h
223: as_del.o: ../../h/general.h
224: as_del.o: ../../h/logger.h
225: as_del.o: ../../h/manifest.h
226: as_del.o: ../../h/psap.h
227: as_del.o: ../../h/quipu/attr.h
228: as_del.o: ../../h/quipu/attrvalue.h
229: as_del.o: ../../h/quipu/config.h
230: as_del.o: ../../h/quipu/name.h
231: as_del.o: ../../h/quipu/oid.h
232: as_del.o: ../../h/quipu/util.h
233: as_find.o: ../../h/config.h
234: as_find.o: ../../h/general.h
235: as_find.o: ../../h/logger.h
236: as_find.o: ../../h/manifest.h
237: as_find.o: ../../h/psap.h
238: as_find.o: ../../h/quipu/attr.h
239: as_find.o: ../../h/quipu/attrvalue.h
240: as_find.o: ../../h/quipu/config.h
241: as_find.o: ../../h/quipu/name.h
242: as_find.o: ../../h/quipu/oid.h
243: as_find.o: ../../h/quipu/util.h
244: as_free.o: ../../h/config.h
245: as_free.o: ../../h/general.h
246: as_free.o: ../../h/logger.h
247: as_free.o: ../../h/manifest.h
248: as_free.o: ../../h/psap.h
249: as_free.o: ../../h/quipu/attr.h
250: as_free.o: ../../h/quipu/attrvalue.h
251: as_free.o: ../../h/quipu/config.h
252: as_free.o: ../../h/quipu/name.h
253: as_free.o: ../../h/quipu/oid.h
254: as_free.o: ../../h/quipu/util.h
255: as_merge.o: ../../h/config.h
256: as_merge.o: ../../h/general.h
257: as_merge.o: ../../h/logger.h
258: as_merge.o: ../../h/manifest.h
259: as_merge.o: ../../h/psap.h
260: as_merge.o: ../../h/quipu/attr.h
261: as_merge.o: ../../h/quipu/attrvalue.h
262: as_merge.o: ../../h/quipu/config.h
263: as_merge.o: ../../h/quipu/name.h
264: as_merge.o: ../../h/quipu/oid.h
265: as_merge.o: ../../h/quipu/util.h
266: as_new.o: ../../h/config.h
267: as_new.o: ../../h/general.h
268: as_new.o: ../../h/logger.h
269: as_new.o: ../../h/manifest.h
270: as_new.o: ../../h/psap.h
271: as_new.o: ../../h/quipu/attr.h
272: as_new.o: ../../h/quipu/attrvalue.h
273: as_new.o: ../../h/quipu/config.h
274: as_new.o: ../../h/quipu/name.h
275: as_new.o: ../../h/quipu/oid.h
276: as_new.o: ../../h/quipu/util.h
277: as_print.o: ../../h/config.h
278: as_print.o: ../../h/general.h
279: as_print.o: ../../h/logger.h
280: as_print.o: ../../h/manifest.h
281: as_print.o: ../../h/psap.h
282: as_print.o: ../../h/quipu/attr.h
283: as_print.o: ../../h/quipu/attrvalue.h
284: as_print.o: ../../h/quipu/config.h
285: as_print.o: ../../h/quipu/name.h
286: as_print.o: ../../h/quipu/oid.h
287: as_print.o: ../../h/quipu/util.h
288: as_str.o: ../../h/config.h
289: as_str.o: ../../h/general.h
290: as_str.o: ../../h/logger.h
291: as_str.o: ../../h/manifest.h
292: as_str.o: ../../h/psap.h
293: as_str.o: ../../h/quipu/attr.h
294: as_str.o: ../../h/quipu/attrvalue.h
295: as_str.o: ../../h/quipu/config.h
296: as_str.o: ../../h/quipu/malloc.h
297: as_str.o: ../../h/quipu/name.h
298: as_str.o: ../../h/quipu/oid.h
299: as_str.o: ../../h/quipu/util.h
300: attrt_cmp.o: ../../h/config.h
301: attrt_cmp.o: ../../h/general.h
302: attrt_cmp.o: ../../h/logger.h
303: attrt_cmp.o: ../../h/manifest.h
304: attrt_cmp.o: ../../h/psap.h
305: attrt_cmp.o: ../../h/quipu/attr.h
306: attrt_cmp.o: ../../h/quipu/config.h
307: attrt_cmp.o: ../../h/quipu/name.h
308: attrt_cmp.o: ../../h/quipu/oid.h
309: attrt_cmp.o: ../../h/quipu/util.h
310: attrt_cpy.o: ../../h/config.h
311: attrt_cpy.o: ../../h/general.h
312: attrt_cpy.o: ../../h/logger.h
313: attrt_cpy.o: ../../h/manifest.h
314: attrt_cpy.o: ../../h/psap.h
315: attrt_cpy.o: ../../h/quipu/attr.h
316: attrt_cpy.o: ../../h/quipu/config.h
317: attrt_cpy.o: ../../h/quipu/malloc.h
318: attrt_cpy.o: ../../h/quipu/name.h
319: attrt_cpy.o: ../../h/quipu/oid.h
320: attrt_cpy.o: ../../h/quipu/util.h
321: attrt_dec.o: ../../h/config.h
322: attrt_dec.o: ../../h/general.h
323: attrt_dec.o: ../../h/logger.h
324: attrt_dec.o: ../../h/manifest.h
325: attrt_dec.o: ../../h/psap.h
326: attrt_dec.o: ../../h/quipu/attr.h
327: attrt_dec.o: ../../h/quipu/config.h
328: attrt_dec.o: ../../h/quipu/name.h
329: attrt_dec.o: ../../h/quipu/oid.h
330: attrt_dec.o: ../../h/quipu/util.h
331: attrt_free.o: ../../h/config.h
332: attrt_free.o: ../../h/general.h
333: attrt_free.o: ../../h/logger.h
334: attrt_free.o: ../../h/manifest.h
335: attrt_free.o: ../../h/psap.h
336: attrt_free.o: ../../h/quipu/attr.h
337: attrt_free.o: ../../h/quipu/config.h
338: attrt_free.o: ../../h/quipu/name.h
339: attrt_free.o: ../../h/quipu/oid.h
340: attrt_free.o: ../../h/quipu/util.h
341: attrt_new.o: ../../h/config.h
342: attrt_new.o: ../../h/general.h
343: attrt_new.o: ../../h/logger.h
344: attrt_new.o: ../../h/manifest.h
345: attrt_new.o: ../../h/psap.h
346: attrt_new.o: ../../h/quipu/attr.h
347: attrt_new.o: ../../h/quipu/config.h
348: attrt_new.o: ../../h/quipu/name.h
349: attrt_new.o: ../../h/quipu/oid.h
350: attrt_new.o: ../../h/quipu/util.h
351: attrt_print.o: ../../h/config.h
352: attrt_print.o: ../../h/general.h
353: attrt_print.o: ../../h/logger.h
354: attrt_print.o: ../../h/manifest.h
355: attrt_print.o: ../../h/psap.h
356: attrt_print.o: ../../h/quipu/attr.h
357: attrt_print.o: ../../h/quipu/config.h
358: attrt_print.o: ../../h/quipu/name.h
359: attrt_print.o: ../../h/quipu/oid.h
360: attrt_print.o: ../../h/quipu/util.h
361: attrv.o: ../../h/cmd_srch.h
362: attrv.o: ../../h/config.h
363: attrv.o: ../../h/general.h
364: attrv.o: ../../h/isoaddrs.h
365: attrv.o: ../../h/logger.h
366: attrv.o: ../../h/manifest.h
367: attrv.o: ../../h/psap.h
368: attrv.o: ../../h/quipu/attr.h
369: attrv.o: ../../h/quipu/attrvalue.h
370: attrv.o: ../../h/quipu/config.h
371: attrv.o: ../../h/quipu/ds_error.h
372: attrv.o: ../../h/quipu/dsp.h
373: attrv.o: ../../h/quipu/entry.h
374: attrv.o: ../../h/quipu/malloc.h
375: attrv.o: ../../h/quipu/name.h
376: attrv.o: ../../h/quipu/oid.h
377: attrv.o: ../../h/quipu/util.h
378: avs_cmp.o: ../../h/config.h
379: avs_cmp.o: ../../h/general.h
380: avs_cmp.o: ../../h/isoaddrs.h
381: avs_cmp.o: ../../h/logger.h
382: avs_cmp.o: ../../h/manifest.h
383: avs_cmp.o: ../../h/psap.h
384: avs_cmp.o: ../../h/quipu/attr.h
385: avs_cmp.o: ../../h/quipu/attrvalue.h
386: avs_cmp.o: ../../h/quipu/config.h
387: avs_cmp.o: ../../h/quipu/ds_error.h
388: avs_cmp.o: ../../h/quipu/dsp.h
389: avs_cmp.o: ../../h/quipu/name.h
390: avs_cmp.o: ../../h/quipu/oid.h
391: avs_cmp.o: ../../h/quipu/util.h
392: avs_cpy.o: ../../h/config.h
393: avs_cpy.o: ../../h/general.h
394: avs_cpy.o: ../../h/logger.h
395: avs_cpy.o: ../../h/manifest.h
396: avs_cpy.o: ../../h/psap.h
397: avs_cpy.o: ../../h/quipu/attr.h
398: avs_cpy.o: ../../h/quipu/attrvalue.h
399: avs_cpy.o: ../../h/quipu/config.h
400: avs_cpy.o: ../../h/quipu/name.h
401: avs_cpy.o: ../../h/quipu/oid.h
402: avs_cpy.o: ../../h/quipu/util.h
403: avs_del.o: ../../h/config.h
404: avs_del.o: ../../h/general.h
405: avs_del.o: ../../h/logger.h
406: avs_del.o: ../../h/manifest.h
407: avs_del.o: ../../h/psap.h
408: avs_del.o: ../../h/quipu/attr.h
409: avs_del.o: ../../h/quipu/attrvalue.h
410: avs_del.o: ../../h/quipu/config.h
411: avs_del.o: ../../h/quipu/name.h
412: avs_del.o: ../../h/quipu/oid.h
413: avs_del.o: ../../h/quipu/util.h
414: avs_free.o: ../../h/config.h
415: avs_free.o: ../../h/general.h
416: avs_free.o: ../../h/logger.h
417: avs_free.o: ../../h/manifest.h
418: avs_free.o: ../../h/psap.h
419: avs_free.o: ../../h/quipu/attr.h
420: avs_free.o: ../../h/quipu/attrvalue.h
421: avs_free.o: ../../h/quipu/config.h
422: avs_free.o: ../../h/quipu/name.h
423: avs_free.o: ../../h/quipu/oid.h
424: avs_free.o: ../../h/quipu/util.h
425: avs_merge.o: ../../h/config.h
426: avs_merge.o: ../../h/general.h
427: avs_merge.o: ../../h/isoaddrs.h
428: avs_merge.o: ../../h/logger.h
429: avs_merge.o: ../../h/manifest.h
430: avs_merge.o: ../../h/psap.h
431: avs_merge.o: ../../h/quipu/attr.h
432: avs_merge.o: ../../h/quipu/attrvalue.h
433: avs_merge.o: ../../h/quipu/config.h
434: avs_merge.o: ../../h/quipu/ds_error.h
435: avs_merge.o: ../../h/quipu/dsp.h
436: avs_merge.o: ../../h/quipu/name.h
437: avs_merge.o: ../../h/quipu/oid.h
438: avs_merge.o: ../../h/quipu/util.h
439: avs_new.o: ../../h/config.h
440: avs_new.o: ../../h/general.h
441: avs_new.o: ../../h/logger.h
442: avs_new.o: ../../h/manifest.h
443: avs_new.o: ../../h/psap.h
444: avs_new.o: ../../h/quipu/attr.h
445: avs_new.o: ../../h/quipu/attrvalue.h
446: avs_new.o: ../../h/quipu/config.h
447: avs_new.o: ../../h/quipu/name.h
448: avs_new.o: ../../h/quipu/oid.h
449: avs_new.o: ../../h/quipu/util.h
450: avs_print.o: ../../h/config.h
451: avs_print.o: ../../h/general.h
452: avs_print.o: ../../h/logger.h
453: avs_print.o: ../../h/manifest.h
454: avs_print.o: ../../h/psap.h
455: avs_print.o: ../../h/quipu/attr.h
456: avs_print.o: ../../h/quipu/attrvalue.h
457: avs_print.o: ../../h/quipu/config.h
458: avs_print.o: ../../h/quipu/name.h
459: avs_print.o: ../../h/quipu/oid.h
460: avs_print.o: ../../h/quipu/util.h
461: avs_str.o: ../../h/config.h
462: avs_str.o: ../../h/general.h
463: avs_str.o: ../../h/logger.h
464: avs_str.o: ../../h/manifest.h
465: avs_str.o: ../../h/psap.h
466: avs_str.o: ../../h/quipu/attr.h
467: avs_str.o: ../../h/quipu/attrvalue.h
468: avs_str.o: ../../h/quipu/config.h
469: avs_str.o: ../../h/quipu/name.h
470: avs_str.o: ../../h/quipu/oid.h
471: avs_str.o: ../../h/quipu/util.h
472: boolean.o: ../../h/config.h
473: boolean.o: ../../h/general.h
474: boolean.o: ../../h/logger.h
475: boolean.o: ../../h/manifest.h
476: boolean.o: ../../h/psap.h
477: boolean.o: ../../h/quipu/attr.h
478: boolean.o: ../../h/quipu/config.h
479: boolean.o: ../../h/quipu/oid.h
480: boolean.o: ../../h/quipu/util.h
481: ca.o: ../../h/config.h
482: ca.o: ../../h/general.h
483: ca.o: ../../h/isoaddrs.h
484: ca.o: ../../h/logger.h
485: ca.o: ../../h/manifest.h
486: ca.o: ../../h/psap.h
487: ca.o: ../../h/quipu/abandon.h
488: ca.o: ../../h/quipu/add.h
489: ca.o: ../../h/quipu/attr.h
490: ca.o: ../../h/quipu/attrvalue.h
491: ca.o: ../../h/quipu/authen.h
492: ca.o: ../../h/quipu/bind.h
493: ca.o: ../../h/quipu/common.h
494: ca.o: ../../h/quipu/commonarg.h
495: ca.o: ../../h/quipu/compare.h
496: ca.o: ../../h/quipu/config.h
497: ca.o: ../../h/quipu/dap.h
498: ca.o: ../../h/quipu/ds_error.h
499: ca.o: ../../h/quipu/ds_search.h
500: ca.o: ../../h/quipu/dsargument.h
501: ca.o: ../../h/quipu/dsp.h
502: ca.o: ../../h/quipu/entry.h
503: ca.o: ../../h/quipu/list.h
504: ca.o: ../../h/quipu/modify.h
505: ca.o: ../../h/quipu/modifyrdn.h
506: ca.o: ../../h/quipu/name.h
507: ca.o: ../../h/quipu/oid.h
508: ca.o: ../../h/quipu/read.h
509: ca.o: ../../h/quipu/remove.h
510: ca.o: ../../h/quipu/util.h
511: cache.o: ../../h/config.h
512: cache.o: ../../h/general.h
513: cache.o: ../../h/isoaddrs.h
514: cache.o: ../../h/logger.h
515: cache.o: ../../h/manifest.h
516: cache.o: ../../h/psap.h
517: cache.o: ../../h/quipu/attr.h
518: cache.o: ../../h/quipu/attrvalue.h
519: cache.o: ../../h/quipu/authen.h
520: cache.o: ../../h/quipu/commonarg.h
521: cache.o: ../../h/quipu/config.h
522: cache.o: ../../h/quipu/dap.h
523: cache.o: ../../h/quipu/ds_error.h
524: cache.o: ../../h/quipu/dsp.h
525: cache.o: ../../h/quipu/dua.h
526: cache.o: ../../h/quipu/entry.h
527: cache.o: ../../h/quipu/list.h
528: cache.o: ../../h/quipu/name.h
529: cache.o: ../../h/quipu/oid.h
530: cache.o: ../../h/quipu/util.h
531: certificate.o: ../../h/config.h
532: certificate.o: ../../h/general.h
533: certificate.o: ../../h/isoaddrs.h
534: certificate.o: ../../h/logger.h
535: certificate.o: ../../h/manifest.h
536: certificate.o: ../../h/psap.h
537: certificate.o: ../../h/quipu/attr.h
538: certificate.o: ../../h/quipu/attrvalue.h
539: certificate.o: ../../h/quipu/authen.h
540: certificate.o: ../../h/quipu/config.h
541: certificate.o: ../../h/quipu/dsp.h
542: certificate.o: ../../h/quipu/entry.h
543: certificate.o: ../../h/quipu/name.h
544: certificate.o: ../../h/quipu/oid.h
545: certificate.o: ../../h/quipu/util.h
546: conf.o: ../../h/config.h
547: conf.o: ../../h/general.h
548: conf.o: ../../h/logger.h
549: conf.o: ../../h/manifest.h
550: conf.o: ../../h/quipu/config.h
551: conf.o: ../../h/quipu/util.h
552: conf.o: ../../h/tailor.h
553: correlate.o: ../../h/config.h
554: correlate.o: ../../h/general.h
555: correlate.o: ../../h/isoaddrs.h
556: correlate.o: ../../h/logger.h
557: correlate.o: ../../h/manifest.h
558: correlate.o: ../../h/psap.h
559: correlate.o: ../../h/quipu/attr.h
560: correlate.o: ../../h/quipu/attrvalue.h
561: correlate.o: ../../h/quipu/authen.h
562: correlate.o: ../../h/quipu/commonarg.h
563: correlate.o: ../../h/quipu/config.h
564: correlate.o: ../../h/quipu/dap.h
565: correlate.o: ../../h/quipu/ds_error.h
566: correlate.o: ../../h/quipu/ds_search.h
567: correlate.o: ../../h/quipu/dsp.h
568: correlate.o: ../../h/quipu/list.h
569: correlate.o: ../../h/quipu/name.h
570: correlate.o: ../../h/quipu/oid.h
571: correlate.o: ../../h/quipu/util.h
572: cpair.o: ../../h/config.h
573: cpair.o: ../../h/general.h
574: cpair.o: ../../h/manifest.h
575: cpair.o: ../../h/psap.h
576: cpair.o: ../../h/quipu/attr.h
577: cpair.o: ../../h/quipu/authen.h
578: cpair.o: ../../h/quipu/name.h
579: cpair.o: ../../h/quipu/oid.h
580: dn_append.o: ../../h/config.h
581: dn_append.o: ../../h/general.h
582: dn_append.o: ../../h/logger.h
583: dn_append.o: ../../h/manifest.h
584: dn_append.o: ../../h/psap.h
585: dn_append.o: ../../h/quipu/attr.h
586: dn_append.o: ../../h/quipu/config.h
587: dn_append.o: ../../h/quipu/name.h
588: dn_append.o: ../../h/quipu/oid.h
589: dn_append.o: ../../h/quipu/util.h
590: dn_cmp.o: ../../h/config.h
591: dn_cmp.o: ../../h/general.h
592: dn_cmp.o: ../../h/logger.h
593: dn_cmp.o: ../../h/manifest.h
594: dn_cmp.o: ../../h/psap.h
595: dn_cmp.o: ../../h/quipu/attr.h
596: dn_cmp.o: ../../h/quipu/config.h
597: dn_cmp.o: ../../h/quipu/name.h
598: dn_cmp.o: ../../h/quipu/oid.h
599: dn_cmp.o: ../../h/quipu/util.h
600: dn_cpy.o: ../../h/config.h
601: dn_cpy.o: ../../h/general.h
602: dn_cpy.o: ../../h/logger.h
603: dn_cpy.o: ../../h/manifest.h
604: dn_cpy.o: ../../h/psap.h
605: dn_cpy.o: ../../h/quipu/attr.h
606: dn_cpy.o: ../../h/quipu/config.h
607: dn_cpy.o: ../../h/quipu/name.h
608: dn_cpy.o: ../../h/quipu/oid.h
609: dn_cpy.o: ../../h/quipu/util.h
610: dn_free.o: ../../h/config.h
611: dn_free.o: ../../h/general.h
612: dn_free.o: ../../h/logger.h
613: dn_free.o: ../../h/manifest.h
614: dn_free.o: ../../h/psap.h
615: dn_free.o: ../../h/quipu/attr.h
616: dn_free.o: ../../h/quipu/config.h
617: dn_free.o: ../../h/quipu/name.h
618: dn_free.o: ../../h/quipu/oid.h
619: dn_free.o: ../../h/quipu/util.h
620: dn_new.o: ../../h/config.h
621: dn_new.o: ../../h/general.h
622: dn_new.o: ../../h/logger.h
623: dn_new.o: ../../h/manifest.h
624: dn_new.o: ../../h/psap.h
625: dn_new.o: ../../h/quipu/attr.h
626: dn_new.o: ../../h/quipu/config.h
627: dn_new.o: ../../h/quipu/name.h
628: dn_new.o: ../../h/quipu/oid.h
629: dn_new.o: ../../h/quipu/util.h
630: dn_print.o: ../../h/config.h
631: dn_print.o: ../../h/general.h
632: dn_print.o: ../../h/logger.h
633: dn_print.o: ../../h/manifest.h
634: dn_print.o: ../../h/psap.h
635: dn_print.o: ../../h/quipu/attr.h
636: dn_print.o: ../../h/quipu/config.h
637: dn_print.o: ../../h/quipu/name.h
638: dn_print.o: ../../h/quipu/oid.h
639: dn_print.o: ../../h/quipu/util.h
640: dn_seq.o: ../../h/config.h
641: dn_seq.o: ../../h/general.h
642: dn_seq.o: ../../h/isoaddrs.h
643: dn_seq.o: ../../h/logger.h
644: dn_seq.o: ../../h/manifest.h
645: dn_seq.o: ../../h/psap.h
646: dn_seq.o: ../../h/quipu/attr.h
647: dn_seq.o: ../../h/quipu/attrvalue.h
648: dn_seq.o: ../../h/quipu/config.h
649: dn_seq.o: ../../h/quipu/dsp.h
650: dn_seq.o: ../../h/quipu/entry.h
651: dn_seq.o: ../../h/quipu/name.h
652: dn_seq.o: ../../h/quipu/oid.h
653: dn_seq.o: ../../h/quipu/util.h
654: dn_str.o: ../../h/config.h
655: dn_str.o: ../../h/general.h
656: dn_str.o: ../../h/logger.h
657: dn_str.o: ../../h/manifest.h
658: dn_str.o: ../../h/psap.h
659: dn_str.o: ../../h/quipu/attr.h
660: dn_str.o: ../../h/quipu/config.h
661: dn_str.o: ../../h/quipu/name.h
662: dn_str.o: ../../h/quipu/oid.h
663: dn_str.o: ../../h/quipu/util.h
664: ds_error.o: ../../h/config.h
665: ds_error.o: ../../h/general.h
666: ds_error.o: ../../h/isoaddrs.h
667: ds_error.o: ../../h/logger.h
668: ds_error.o: ../../h/manifest.h
669: ds_error.o: ../../h/psap.h
670: ds_error.o: ../../h/quipu/attr.h
671: ds_error.o: ../../h/quipu/authen.h
672: ds_error.o: ../../h/quipu/bind.h
673: ds_error.o: ../../h/quipu/config.h
674: ds_error.o: ../../h/quipu/ds_error.h
675: ds_error.o: ../../h/quipu/dsp.h
676: ds_error.o: ../../h/quipu/name.h
677: ds_error.o: ../../h/quipu/oid.h
678: ds_error.o: ../../h/quipu/util.h
679: dsa_info.o: ../../h/config.h
680: dsa_info.o: ../../h/general.h
681: dsa_info.o: ../../h/isoaddrs.h
682: dsa_info.o: ../../h/logger.h
683: dsa_info.o: ../../h/manifest.h
684: dsa_info.o: ../../h/psap.h
685: dsa_info.o: ../../h/quipu/attr.h
686: dsa_info.o: ../../h/quipu/attrvalue.h
687: dsa_info.o: ../../h/quipu/config.h
688: dsa_info.o: ../../h/quipu/dsp.h
689: dsa_info.o: ../../h/quipu/entry.h
690: dsa_info.o: ../../h/quipu/name.h
691: dsa_info.o: ../../h/quipu/oid.h
692: dsa_info.o: ../../h/quipu/util.h
693: entry.o: ../../h/config.h
694: entry.o: ../../h/general.h
695: entry.o: ../../h/isoaddrs.h
696: entry.o: ../../h/logger.h
697: entry.o: ../../h/manifest.h
698: entry.o: ../../h/psap.h
699: entry.o: ../../h/quipu/attr.h
700: entry.o: ../../h/quipu/attrvalue.h
701: entry.o: ../../h/quipu/config.h
702: entry.o: ../../h/quipu/dsp.h
703: entry.o: ../../h/quipu/entry.h
704: entry.o: ../../h/quipu/name.h
705: entry.o: ../../h/quipu/oid.h
706: entry.o: ../../h/quipu/util.h
707: entryinfo.o: ../../h/config.h
708: entryinfo.o: ../../h/general.h
709: entryinfo.o: ../../h/isoaddrs.h
710: entryinfo.o: ../../h/logger.h
711: entryinfo.o: ../../h/manifest.h
712: entryinfo.o: ../../h/psap.h
713: entryinfo.o: ../../h/quipu/attr.h
714: entryinfo.o: ../../h/quipu/attrvalue.h
715: entryinfo.o: ../../h/quipu/authen.h
716: entryinfo.o: ../../h/quipu/commonarg.h
717: entryinfo.o: ../../h/quipu/config.h
718: entryinfo.o: ../../h/quipu/dsp.h
719: entryinfo.o: ../../h/quipu/name.h
720: entryinfo.o: ../../h/quipu/oid.h
721: entryinfo.o: ../../h/quipu/util.h
722: fax.o: ../../h/config.h
723: fax.o: ../../h/general.h
724: fax.o: ../../h/isoaddrs.h
725: fax.o: ../../h/logger.h
726: fax.o: ../../h/manifest.h
727: fax.o: ../../h/psap.h
728: fax.o: ../../h/quipu/attr.h
729: fax.o: ../../h/quipu/attrvalue.h
730: fax.o: ../../h/quipu/config.h
731: fax.o: ../../h/quipu/dsp.h
732: fax.o: ../../h/quipu/entry.h
733: fax.o: ../../h/quipu/name.h
734: fax.o: ../../h/quipu/oid.h
735: fax.o: ../../h/quipu/util.h
736: file_cpy.o: ../../h/config.h
737: file_cpy.o: ../../h/general.h
738: file_cpy.o: ../../h/logger.h
739: file_cpy.o: ../../h/manifest.h
740: file_cpy.o: ../../h/psap.h
741: file_cpy.o: ../../h/quipu/attr.h
742: file_cpy.o: ../../h/quipu/attrvalue.h
743: file_cpy.o: ../../h/quipu/config.h
744: file_cpy.o: ../../h/quipu/name.h
745: file_cpy.o: ../../h/quipu/oid.h
746: file_cpy.o: ../../h/quipu/util.h
747: file_enc.o: ../../h/config.h
748: file_enc.o: ../../h/general.h
749: file_enc.o: ../../h/logger.h
750: file_enc.o: ../../h/manifest.h
751: file_enc.o: ../../h/psap.h
752: file_enc.o: ../../h/quipu/attr.h
753: file_enc.o: ../../h/quipu/attrvalue.h
754: file_enc.o: ../../h/quipu/config.h
755: file_enc.o: ../../h/quipu/name.h
756: file_enc.o: ../../h/quipu/oid.h
757: file_enc.o: ../../h/quipu/util.h
758: file_print.o: ../../h/config.h
759: file_print.o: ../../h/general.h
760: file_print.o: ../../h/logger.h
761: file_print.o: ../../h/manifest.h
762: file_print.o: ../../h/psap.h
763: file_print.o: ../../h/quipu/attr.h
764: file_print.o: ../../h/quipu/attrvalue.h
765: file_print.o: ../../h/quipu/config.h
766: file_print.o: ../../h/quipu/malloc.h
767: file_print.o: ../../h/quipu/name.h
768: file_print.o: ../../h/quipu/oid.h
769: file_print.o: ../../h/quipu/util.h
770: file_str.o: ../../h/config.h
771: file_str.o: ../../h/general.h
772: file_str.o: ../../h/logger.h
773: file_str.o: ../../h/manifest.h
774: file_str.o: ../../h/psap.h
775: file_str.o: ../../h/quipu/attr.h
776: file_str.o: ../../h/quipu/attrvalue.h
777: file_str.o: ../../h/quipu/config.h
778: file_str.o: ../../h/quipu/name.h
779: file_str.o: ../../h/quipu/oid.h
780: file_str.o: ../../h/quipu/util.h
781: filter.o: ../../h/config.h
782: filter.o: ../../h/general.h
783: filter.o: ../../h/isoaddrs.h
784: filter.o: ../../h/logger.h
785: filter.o: ../../h/manifest.h
786: filter.o: ../../h/psap.h
787: filter.o: ../../h/quipu/attr.h
788: filter.o: ../../h/quipu/attrvalue.h
789: filter.o: ../../h/quipu/authen.h
790: filter.o: ../../h/quipu/commonarg.h
791: filter.o: ../../h/quipu/config.h
792: filter.o: ../../h/quipu/dap.h
793: filter.o: ../../h/quipu/ds_error.h
794: filter.o: ../../h/quipu/ds_search.h
795: filter.o: ../../h/quipu/dsp.h
796: filter.o: ../../h/quipu/name.h
797: filter.o: ../../h/quipu/oid.h
798: filter.o: ../../h/quipu/util.h
799: guide.o: ../../h/cmd_srch.h
800: guide.o: ../../h/config.h
801: guide.o: ../../h/general.h
802: guide.o: ../../h/logger.h
803: guide.o: ../../h/manifest.h
804: guide.o: ../../h/psap.h
805: guide.o: ../../h/quipu/attr.h
806: guide.o: ../../h/quipu/attrvalue.h
807: guide.o: ../../h/quipu/config.h
808: guide.o: ../../h/quipu/name.h
809: guide.o: ../../h/quipu/oid.h
810: guide.o: ../../h/quipu/util.h
811: integer.o: ../../h/config.h
812: integer.o: ../../h/general.h
813: integer.o: ../../h/logger.h
814: integer.o: ../../h/manifest.h
815: integer.o: ../../h/psap.h
816: integer.o: ../../h/quipu/attr.h
817: integer.o: ../../h/quipu/config.h
818: integer.o: ../../h/quipu/oid.h
819: integer.o: ../../h/quipu/util.h
820: mailbox.o: ../../h/config.h
821: mailbox.o: ../../h/general.h
822: mailbox.o: ../../h/isoaddrs.h
823: mailbox.o: ../../h/logger.h
824: mailbox.o: ../../h/manifest.h
825: mailbox.o: ../../h/psap.h
826: mailbox.o: ../../h/quipu/attr.h
827: mailbox.o: ../../h/quipu/attrvalue.h
828: mailbox.o: ../../h/quipu/config.h
829: mailbox.o: ../../h/quipu/dsp.h
830: mailbox.o: ../../h/quipu/entry.h
831: mailbox.o: ../../h/quipu/name.h
832: mailbox.o: ../../h/quipu/oid.h
833: mailbox.o: ../../h/quipu/util.h
834: nparse.o: ../../h/config.h
835: nparse.o: ../../h/general.h
836: nparse.o: ../../h/isoaddrs.h
837: nparse.o: ../../h/logger.h
838: nparse.o: ../../h/manifest.h
839: nparse.o: ../../h/psap.h
840: nparse.o: ../../h/quipu/attr.h
841: nparse.o: ../../h/quipu/attrvalue.h
842: nparse.o: ../../h/quipu/config.h
843: nparse.o: ../../h/quipu/ds_error.h
844: nparse.o: ../../h/quipu/dsp.h
845: nparse.o: ../../h/quipu/entry.h
846: nparse.o: ../../h/quipu/malloc.h
847: nparse.o: ../../h/quipu/name.h
848: nparse.o: ../../h/quipu/oid.h
849: nparse.o: ../../h/quipu/util.h
850: nparse.o: ../../h/tailor.h
851: nparse1.o: ../../h/config.h
852: nparse1.o: ../../h/general.h
853: nparse1.o: ../../h/isoaddrs.h
854: nparse1.o: ../../h/logger.h
855: nparse1.o: ../../h/manifest.h
856: nparse1.o: ../../h/psap.h
857: nparse1.o: ../../h/quipu/attr.h
858: nparse1.o: ../../h/quipu/attrvalue.h
859: nparse1.o: ../../h/quipu/config.h
860: nparse1.o: ../../h/quipu/ds_error.h
861: nparse1.o: ../../h/quipu/dsp.h
862: nparse1.o: ../../h/quipu/entry.h
863: nparse1.o: ../../h/quipu/malloc.h
864: nparse1.o: ../../h/quipu/name.h
865: nparse1.o: ../../h/quipu/oid.h
866: nparse1.o: ../../h/quipu/util.h
867: nrs_info.o: ../../h/config.h
868: nrs_info.o: ../../h/general.h
869: nrs_info.o: ../../h/logger.h
870: nrs_info.o: ../../h/manifest.h
871: nrs_info.o: ../../h/psap.h
872: nrs_info.o: ../../h/quipu/attr.h
873: nrs_info.o: ../../h/quipu/config.h
874: nrs_info.o: ../../h/quipu/nrs_info.h
875: nrs_info.o: ../../h/quipu/oid.h
876: nrs_info.o: ../../h/quipu/util.h
877: oc.o: ../../h/config.h
878: oc.o: ../../h/general.h
879: oc.o: ../../h/isoaddrs.h
880: oc.o: ../../h/logger.h
881: oc.o: ../../h/manifest.h
882: oc.o: ../../h/psap.h
883: oc.o: ../../h/quipu/attr.h
884: oc.o: ../../h/quipu/attrvalue.h
885: oc.o: ../../h/quipu/config.h
886: oc.o: ../../h/quipu/dsp.h
887: oc.o: ../../h/quipu/entry.h
888: oc.o: ../../h/quipu/name.h
889: oc.o: ../../h/quipu/oid.h
890: oc.o: ../../h/quipu/util.h
891: oc.o: ../../h/tailor.h
892: oid.o: ../../h/cmd_srch.h
893: oid.o: ../../h/config.h
894: oid.o: ../../h/general.h
895: oid.o: ../../h/isoaddrs.h
896: oid.o: ../../h/logger.h
897: oid.o: ../../h/manifest.h
898: oid.o: ../../h/psap.h
899: oid.o: ../../h/quipu/attr.h
900: oid.o: ../../h/quipu/attrvalue.h
901: oid.o: ../../h/quipu/config.h
902: oid.o: ../../h/quipu/dsp.h
903: oid.o: ../../h/quipu/entry.h
904: oid.o: ../../h/quipu/name.h
905: oid.o: ../../h/quipu/oid.h
906: oid.o: ../../h/quipu/util.h
907: oid.o: ../../h/tailor.h
908: oid2.o: ../../h/cmd_srch.h
909: oid2.o: ../../h/config.h
910: oid2.o: ../../h/general.h
911: oid2.o: ../../h/isoaddrs.h
912: oid2.o: ../../h/logger.h
913: oid2.o: ../../h/manifest.h
914: oid2.o: ../../h/psap.h
915: oid2.o: ../../h/quipu/attr.h
916: oid2.o: ../../h/quipu/attrvalue.h
917: oid2.o: ../../h/quipu/config.h
918: oid2.o: ../../h/quipu/dsp.h
919: oid2.o: ../../h/quipu/entry.h
920: oid2.o: ../../h/quipu/name.h
921: oid2.o: ../../h/quipu/oid.h
922: oid2.o: ../../h/quipu/util.h
923: oid2.o: ../../h/tailor.h
924: oidseq.o: ../../h/config.h
925: oidseq.o: ../../h/general.h
926: oidseq.o: ../../h/isoaddrs.h
927: oidseq.o: ../../h/logger.h
928: oidseq.o: ../../h/manifest.h
929: oidseq.o: ../../h/psap.h
930: oidseq.o: ../../h/quipu/attr.h
931: oidseq.o: ../../h/quipu/attrvalue.h
932: oidseq.o: ../../h/quipu/config.h
933: oidseq.o: ../../h/quipu/dsp.h
934: oidseq.o: ../../h/quipu/entry.h
935: oidseq.o: ../../h/quipu/name.h
936: oidseq.o: ../../h/quipu/oid.h
937: oidseq.o: ../../h/quipu/util.h
938: parse.o: ../../h/config.h
939: parse.o: ../../h/general.h
940: parse.o: ../../h/isoaddrs.h
941: parse.o: ../../h/logger.h
942: parse.o: ../../h/manifest.h
943: parse.o: ../../h/psap.h
944: parse.o: ../../h/quipu/attr.h
945: parse.o: ../../h/quipu/attrvalue.h
946: parse.o: ../../h/quipu/config.h
947: parse.o: ../../h/quipu/ds_error.h
948: parse.o: ../../h/quipu/dsp.h
949: parse.o: ../../h/quipu/entry.h
950: parse.o: ../../h/quipu/malloc.h
951: parse.o: ../../h/quipu/name.h
952: parse.o: ../../h/quipu/oid.h
953: parse.o: ../../h/quipu/util.h
954: parse_error.o: ../../h/config.h
955: parse_error.o: ../../h/general.h
956: parse_error.o: ../../h/logger.h
957: parse_error.o: ../../h/manifest.h
958: parse_error.o: ../../h/psap.h
959: parse_error.o: ../../h/quipu/config.h
960: parse_error.o: ../../h/quipu/util.h
961: pdm.o: ../../h/cmd_srch.h
962: pdm.o: ../../h/config.h
963: pdm.o: ../../h/general.h
964: pdm.o: ../../h/logger.h
965: pdm.o: ../../h/manifest.h
966: pdm.o: ../../h/psap.h
967: pdm.o: ../../h/quipu/attr.h
968: pdm.o: ../../h/quipu/attrvalue.h
969: pdm.o: ../../h/quipu/config.h
970: pdm.o: ../../h/quipu/name.h
971: pdm.o: ../../h/quipu/oid.h
972: pdm.o: ../../h/quipu/util.h
973: pe.o: ../../h/config.h
974: pe.o: ../../h/general.h
975: pe.o: ../../h/logger.h
976: pe.o: ../../h/manifest.h
977: pe.o: ../../h/psap.h
978: pe.o: ../../h/quipu/attr.h
979: pe.o: ../../h/quipu/config.h
980: pe.o: ../../h/quipu/oid.h
981: pe.o: ../../h/quipu/util.h
982: picture.o: ../../h/config.h
983: picture.o: ../../h/general.h
984: picture.o: ../../h/logger.h
985: picture.o: ../../h/manifest.h
986: picture.o: ../../h/psap.h
987: picture.o: ../../h/quipu/attr.h
988: picture.o: ../../h/quipu/config.h
989: picture.o: ../../h/quipu/oid.h
990: picture.o: ../../h/quipu/photo.h
991: picture.o: ../../h/quipu/util.h
992: post.o: ../../h/config.h
993: post.o: ../../h/general.h
994: post.o: ../../h/logger.h
995: post.o: ../../h/manifest.h
996: post.o: ../../h/psap.h
997: post.o: ../../h/quipu/attr.h
998: post.o: ../../h/quipu/attrvalue.h
999: post.o: ../../h/quipu/config.h
1000: post.o: ../../h/quipu/name.h
1001: post.o: ../../h/quipu/oid.h
1002: post.o: ../../h/quipu/util.h
1003: protected.o: ../../h/config.h
1004: protected.o: ../../h/general.h
1005: protected.o: ../../h/logger.h
1006: protected.o: ../../h/manifest.h
1007: protected.o: ../../h/psap.h
1008: protected.o: ../../h/quipu/attr.h
1009: protected.o: ../../h/quipu/authen.h
1010: protected.o: ../../h/quipu/config.h
1011: protected.o: ../../h/quipu/name.h
1012: protected.o: ../../h/quipu/oid.h
1013: protected.o: ../../h/quipu/util.h
1014: psap.o: ../../h/config.h
1015: psap.o: ../../h/general.h
1016: psap.o: ../../h/isoaddrs.h
1017: psap.o: ../../h/logger.h
1018: psap.o: ../../h/manifest.h
1019: psap.o: ../../h/psap.h
1020: psap.o: ../../h/quipu/attr.h
1021: psap.o: ../../h/quipu/config.h
1022: psap.o: ../../h/quipu/oid.h
1023: psap.o: ../../h/quipu/util.h
1024: rdn_cmp.o: ../../h/config.h
1025: rdn_cmp.o: ../../h/general.h
1026: rdn_cmp.o: ../../h/isoaddrs.h
1027: rdn_cmp.o: ../../h/logger.h
1028: rdn_cmp.o: ../../h/manifest.h
1029: rdn_cmp.o: ../../h/psap.h
1030: rdn_cmp.o: ../../h/quipu/attr.h
1031: rdn_cmp.o: ../../h/quipu/config.h
1032: rdn_cmp.o: ../../h/quipu/ds_error.h
1033: rdn_cmp.o: ../../h/quipu/dsp.h
1034: rdn_cmp.o: ../../h/quipu/name.h
1035: rdn_cmp.o: ../../h/quipu/oid.h
1036: rdn_cmp.o: ../../h/quipu/util.h
1037: rdn_cpy.o: ../../h/config.h
1038: rdn_cpy.o: ../../h/general.h
1039: rdn_cpy.o: ../../h/logger.h
1040: rdn_cpy.o: ../../h/manifest.h
1041: rdn_cpy.o: ../../h/psap.h
1042: rdn_cpy.o: ../../h/quipu/attr.h
1043: rdn_cpy.o: ../../h/quipu/config.h
1044: rdn_cpy.o: ../../h/quipu/malloc.h
1045: rdn_cpy.o: ../../h/quipu/name.h
1046: rdn_cpy.o: ../../h/quipu/oid.h
1047: rdn_cpy.o: ../../h/quipu/util.h
1048: rdn_free.o: ../../h/config.h
1049: rdn_free.o: ../../h/general.h
1050: rdn_free.o: ../../h/logger.h
1051: rdn_free.o: ../../h/manifest.h
1052: rdn_free.o: ../../h/psap.h
1053: rdn_free.o: ../../h/quipu/attr.h
1054: rdn_free.o: ../../h/quipu/config.h
1055: rdn_free.o: ../../h/quipu/name.h
1056: rdn_free.o: ../../h/quipu/oid.h
1057: rdn_free.o: ../../h/quipu/util.h
1058: rdn_merge.o: ../../h/config.h
1059: rdn_merge.o: ../../h/general.h
1060: rdn_merge.o: ../../h/logger.h
1061: rdn_merge.o: ../../h/manifest.h
1062: rdn_merge.o: ../../h/psap.h
1063: rdn_merge.o: ../../h/quipu/attr.h
1064: rdn_merge.o: ../../h/quipu/config.h
1065: rdn_merge.o: ../../h/quipu/name.h
1066: rdn_merge.o: ../../h/quipu/oid.h
1067: rdn_merge.o: ../../h/quipu/util.h
1068: rdn_new.o: ../../h/config.h
1069: rdn_new.o: ../../h/general.h
1070: rdn_new.o: ../../h/logger.h
1071: rdn_new.o: ../../h/manifest.h
1072: rdn_new.o: ../../h/psap.h
1073: rdn_new.o: ../../h/quipu/attr.h
1074: rdn_new.o: ../../h/quipu/config.h
1075: rdn_new.o: ../../h/quipu/name.h
1076: rdn_new.o: ../../h/quipu/oid.h
1077: rdn_new.o: ../../h/quipu/util.h
1078: rdn_print.o: ../../h/config.h
1079: rdn_print.o: ../../h/general.h
1080: rdn_print.o: ../../h/logger.h
1081: rdn_print.o: ../../h/manifest.h
1082: rdn_print.o: ../../h/psap.h
1083: rdn_print.o: ../../h/quipu/attr.h
1084: rdn_print.o: ../../h/quipu/config.h
1085: rdn_print.o: ../../h/quipu/name.h
1086: rdn_print.o: ../../h/quipu/oid.h
1087: rdn_print.o: ../../h/quipu/util.h
1088: rdn_str.o: ../../h/config.h
1089: rdn_str.o: ../../h/general.h
1090: rdn_str.o: ../../h/logger.h
1091: rdn_str.o: ../../h/manifest.h
1092: rdn_str.o: ../../h/psap.h
1093: rdn_str.o: ../../h/quipu/attr.h
1094: rdn_str.o: ../../h/quipu/config.h
1095: rdn_str.o: ../../h/quipu/malloc.h
1096: rdn_str.o: ../../h/quipu/name.h
1097: rdn_str.o: ../../h/quipu/oid.h
1098: rdn_str.o: ../../h/quipu/util.h
1099: revoke.o: ../../h/config.h
1100: revoke.o: ../../h/general.h
1101: revoke.o: ../../h/isoaddrs.h
1102: revoke.o: ../../h/logger.h
1103: revoke.o: ../../h/manifest.h
1104: revoke.o: ../../h/psap.h
1105: revoke.o: ../../h/quipu/attr.h
1106: revoke.o: ../../h/quipu/attrvalue.h
1107: revoke.o: ../../h/quipu/authen.h
1108: revoke.o: ../../h/quipu/bind.h
1109: revoke.o: ../../h/quipu/config.h
1110: revoke.o: ../../h/quipu/dsp.h
1111: revoke.o: ../../h/quipu/entry.h
1112: revoke.o: ../../h/quipu/name.h
1113: revoke.o: ../../h/quipu/oid.h
1114: revoke.o: ../../h/quipu/util.h
1115: soundex.o: ../../h/config.h
1116: soundex.o: ../../h/general.h
1117: soundex.o: ../../h/isoaddrs.h
1118: soundex.o: ../../h/logger.h
1119: soundex.o: ../../h/manifest.h
1120: soundex.o: ../../h/psap.h
1121: soundex.o: ../../h/quipu/attr.h
1122: soundex.o: ../../h/quipu/attrvalue.h
1123: soundex.o: ../../h/quipu/authen.h
1124: soundex.o: ../../h/quipu/commonarg.h
1125: soundex.o: ../../h/quipu/config.h
1126: soundex.o: ../../h/quipu/dap.h
1127: soundex.o: ../../h/quipu/ds_error.h
1128: soundex.o: ../../h/quipu/ds_search.h
1129: soundex.o: ../../h/quipu/dsp.h
1130: soundex.o: ../../h/quipu/name.h
1131: soundex.o: ../../h/quipu/oid.h
1132: soundex.o: ../../h/quipu/util.h
1133: string.o: ../../h/config.h
1134: string.o: ../../h/general.h
1135: string.o: ../../h/isoaddrs.h
1136: string.o: ../../h/logger.h
1137: string.o: ../../h/manifest.h
1138: string.o: ../../h/psap.h
1139: string.o: ../../h/quipu/attr.h
1140: string.o: ../../h/quipu/attrvalue.h
1141: string.o: ../../h/quipu/authen.h
1142: string.o: ../../h/quipu/commonarg.h
1143: string.o: ../../h/quipu/config.h
1144: string.o: ../../h/quipu/dap.h
1145: string.o: ../../h/quipu/ds_error.h
1146: string.o: ../../h/quipu/ds_search.h
1147: string.o: ../../h/quipu/dsp.h
1148: string.o: ../../h/quipu/name.h
1149: string.o: ../../h/quipu/oid.h
1150: string.o: ../../h/quipu/util.h
1151: sys_init.o: ../../h/config.h
1152: sys_init.o: ../../h/general.h
1153: sys_init.o: ../../h/logger.h
1154: sys_init.o: ../../h/manifest.h
1155: sys_init.o: ../../h/quipu/config.h
1156: sys_init.o: ../../h/quipu/util.h
1157: sys_init.o: ../../h/tailor.h
1158: sys_tai.o: ../../h/cmd_srch.h
1159: sys_tai.o: ../../h/config.h
1160: sys_tai.o: ../../h/general.h
1161: sys_tai.o: ../../h/logger.h
1162: sys_tai.o: ../../h/manifest.h
1163: sys_tai.o: ../../h/quipu/config.h
1164: sys_tai.o: ../../h/quipu/util.h
1165: sys_tai.o: ../../h/tailor.h
1166: tai_args.o: ../../h/config.h
1167: tai_args.o: ../../h/general.h
1168: tai_args.o: ../../h/logger.h
1169: tai_args.o: ../../h/manifest.h
1170: tai_args.o: ../../h/psap.h
1171: tai_args.o: ../../h/quipu/attr.h
1172: tai_args.o: ../../h/quipu/config.h
1173: tai_args.o: ../../h/quipu/oid.h
1174: tai_args.o: ../../h/quipu/util.h
1175: tai_init.o: ../../h/config.h
1176: tai_init.o: ../../h/general.h
1177: tai_init.o: ../../h/logger.h
1178: tai_init.o: ../../h/manifest.h
1179: tai_init.o: ../../h/quipu/config.h
1180: tai_init.o: ../../h/quipu/util.h
1181: tai_init.o: ../../h/tailor.h
1182: teletex.o: ../../h/config.h
1183: teletex.o: ../../h/general.h
1184: teletex.o: ../../h/isoaddrs.h
1185: teletex.o: ../../h/logger.h
1186: teletex.o: ../../h/manifest.h
1187: teletex.o: ../../h/psap.h
1188: teletex.o: ../../h/quipu/attr.h
1189: teletex.o: ../../h/quipu/attrvalue.h
1190: teletex.o: ../../h/quipu/config.h
1191: teletex.o: ../../h/quipu/dsp.h
1192: teletex.o: ../../h/quipu/entry.h
1193: teletex.o: ../../h/quipu/name.h
1194: teletex.o: ../../h/quipu/oid.h
1195: teletex.o: ../../h/quipu/util.h
1196: telex.o: ../../h/config.h
1197: telex.o: ../../h/general.h
1198: telex.o: ../../h/isoaddrs.h
1199: telex.o: ../../h/logger.h
1200: telex.o: ../../h/manifest.h
1201: telex.o: ../../h/psap.h
1202: telex.o: ../../h/quipu/attr.h
1203: telex.o: ../../h/quipu/attrvalue.h
1204: telex.o: ../../h/quipu/config.h
1205: telex.o: ../../h/quipu/dsp.h
1206: telex.o: ../../h/quipu/entry.h
1207: telex.o: ../../h/quipu/name.h
1208: telex.o: ../../h/quipu/oid.h
1209: telex.o: ../../h/quipu/util.h
1210: test.o: ../../h/config.h
1211: test.o: ../../h/general.h
1212: test.o: ../../h/isoaddrs.h
1213: test.o: ../../h/logger.h
1214: test.o: ../../h/manifest.h
1215: test.o: ../../h/psap.h
1216: test.o: ../../h/quipu/attr.h
1217: test.o: ../../h/quipu/attrvalue.h
1218: test.o: ../../h/quipu/config.h
1219: test.o: ../../h/quipu/dsp.h
1220: test.o: ../../h/quipu/entry.h
1221: test.o: ../../h/quipu/name.h
1222: test.o: ../../h/quipu/oid.h
1223: test.o: ../../h/quipu/util.h
1224: time.o: ../../h/config.h
1225: time.o: ../../h/general.h
1226: time.o: ../../h/logger.h
1227: time.o: ../../h/manifest.h
1228: time.o: ../../h/psap.h
1229: time.o: ../../h/quipu/attr.h
1230: time.o: ../../h/quipu/config.h
1231: time.o: ../../h/quipu/oid.h
1232: time.o: ../../h/quipu/util.h
1233: tree_struct.o: ../../h/config.h
1234: tree_struct.o: ../../h/general.h
1235: tree_struct.o: ../../h/isoaddrs.h
1236: tree_struct.o: ../../h/logger.h
1237: tree_struct.o: ../../h/manifest.h
1238: tree_struct.o: ../../h/psap.h
1239: tree_struct.o: ../../h/quipu/attr.h
1240: tree_struct.o: ../../h/quipu/attrvalue.h
1241: tree_struct.o: ../../h/quipu/config.h
1242: tree_struct.o: ../../h/quipu/dsp.h
1243: tree_struct.o: ../../h/quipu/entry.h
1244: tree_struct.o: ../../h/quipu/name.h
1245: tree_struct.o: ../../h/quipu/oid.h
1246: tree_struct.o: ../../h/quipu/util.h
1247: ufn_aet.o: ../../h/acsap.h
1248: ufn_aet.o: ../../h/config.h
1249: ufn_aet.o: ../../h/general.h
1250: ufn_aet.o: ../../h/isoaddrs.h
1251: ufn_aet.o: ../../h/logger.h
1252: ufn_aet.o: ../../h/manifest.h
1253: ufn_aet.o: ../../h/psap.h
1254: ufn_aet.o: ../../h/psap2.h
1255: ufn_aet.o: ../../h/quipu/abandon.h
1256: ufn_aet.o: ../../h/quipu/add.h
1257: ufn_aet.o: ../../h/quipu/attr.h
1258: ufn_aet.o: ../../h/quipu/attrvalue.h
1259: ufn_aet.o: ../../h/quipu/authen.h
1260: ufn_aet.o: ../../h/quipu/bind.h
1261: ufn_aet.o: ../../h/quipu/common.h
1262: ufn_aet.o: ../../h/quipu/commonarg.h
1263: ufn_aet.o: ../../h/quipu/compare.h
1264: ufn_aet.o: ../../h/quipu/config.h
1265: ufn_aet.o: ../../h/quipu/connection.h
1266: ufn_aet.o: ../../h/quipu/dap.h
1267: ufn_aet.o: ../../h/quipu/ds_error.h
1268: ufn_aet.o: ../../h/quipu/ds_search.h
1269: ufn_aet.o: ../../h/quipu/dsap.h
1270: ufn_aet.o: ../../h/quipu/dsargument.h
1271: ufn_aet.o: ../../h/quipu/dsp.h
1272: ufn_aet.o: ../../h/quipu/dua.h
1273: ufn_aet.o: ../../h/quipu/entry.h
1274: ufn_aet.o: ../../h/quipu/list.h
1275: ufn_aet.o: ../../h/quipu/modify.h
1276: ufn_aet.o: ../../h/quipu/modifyrdn.h
1277: ufn_aet.o: ../../h/quipu/name.h
1278: ufn_aet.o: ../../h/quipu/oid.h
1279: ufn_aet.o: ../../h/quipu/read.h
1280: ufn_aet.o: ../../h/quipu/remove.h
1281: ufn_aet.o: ../../h/quipu/ufn.h
1282: ufn_aet.o: ../../h/quipu/util.h
1283: ufn_aet.o: ../../h/ronot.h
1284: ufn_aet.o: ../../h/rosap.h
1285: ufn_aet.o: ../../h/ssap.h
1286: ufn_parse.o: ../../h/acsap.h
1287: ufn_parse.o: ../../h/config.h
1288: ufn_parse.o: ../../h/general.h
1289: ufn_parse.o: ../../h/isoaddrs.h
1290: ufn_parse.o: ../../h/logger.h
1291: ufn_parse.o: ../../h/manifest.h
1292: ufn_parse.o: ../../h/psap.h
1293: ufn_parse.o: ../../h/psap2.h
1294: ufn_parse.o: ../../h/quipu/abandon.h
1295: ufn_parse.o: ../../h/quipu/add.h
1296: ufn_parse.o: ../../h/quipu/attr.h
1297: ufn_parse.o: ../../h/quipu/attrvalue.h
1298: ufn_parse.o: ../../h/quipu/authen.h
1299: ufn_parse.o: ../../h/quipu/bind.h
1300: ufn_parse.o: ../../h/quipu/common.h
1301: ufn_parse.o: ../../h/quipu/commonarg.h
1302: ufn_parse.o: ../../h/quipu/compare.h
1303: ufn_parse.o: ../../h/quipu/config.h
1304: ufn_parse.o: ../../h/quipu/connection.h
1305: ufn_parse.o: ../../h/quipu/dap.h
1306: ufn_parse.o: ../../h/quipu/ds_error.h
1307: ufn_parse.o: ../../h/quipu/ds_search.h
1308: ufn_parse.o: ../../h/quipu/dsap.h
1309: ufn_parse.o: ../../h/quipu/dsargument.h
1310: ufn_parse.o: ../../h/quipu/dsp.h
1311: ufn_parse.o: ../../h/quipu/dua.h
1312: ufn_parse.o: ../../h/quipu/entry.h
1313: ufn_parse.o: ../../h/quipu/list.h
1314: ufn_parse.o: ../../h/quipu/modify.h
1315: ufn_parse.o: ../../h/quipu/modifyrdn.h
1316: ufn_parse.o: ../../h/quipu/name.h
1317: ufn_parse.o: ../../h/quipu/oid.h
1318: ufn_parse.o: ../../h/quipu/read.h
1319: ufn_parse.o: ../../h/quipu/remove.h
1320: ufn_parse.o: ../../h/quipu/ufn.h
1321: ufn_parse.o: ../../h/quipu/util.h
1322: ufn_parse.o: ../../h/ronot.h
1323: ufn_parse.o: ../../h/rosap.h
1324: ufn_parse.o: ../../h/ssap.h
1325: ufn_parse.o: ../../h/tailor.h
1326: util.o: ../../h/config.h
1327: util.o: ../../h/general.h
1328: util.o: ../../h/isoaddrs.h
1329: util.o: ../../h/logger.h
1330: util.o: ../../h/manifest.h
1331: util.o: ../../h/psap.h
1332: util.o: ../../h/quipu/attr.h
1333: util.o: ../../h/quipu/attrvalue.h
1334: util.o: ../../h/quipu/authen.h
1335: util.o: ../../h/quipu/commonarg.h
1336: util.o: ../../h/quipu/config.h
1337: util.o: ../../h/quipu/dsp.h
1338: util.o: ../../h/quipu/malloc.h
1339: util.o: ../../h/quipu/name.h
1340: util.o: ../../h/quipu/oid.h
1341: util.o: ../../h/quipu/util.h
1342: util.o: ../../h/tsap.h
1343: # DEPENDENCIES MUST END AT END OF FILE
1344: # IF YOU PUT STUFF HERE IT WILL GO AWAY
1345: # see make depend above
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.