1CC=@CC@
2
3WFLAGS=	-Wall			\
4	-Wextra			\
5	-Winit-self		\
6	-pedantic		\
7	-Wpointer-arith		\
8	-Wno-format-y2k		\
9	-Wstrict-prototypes	\
10	-Wmissing-declarations	\
11	-Wmissing-prototypes	\
12	-Wnested-externs	\
13	-Wuninitialized		\
14	-Wundef			\
15	-Wwrite-strings		\
16	-Wold-style-definition	\
17	-Wno-missing-field-initializers	\
18	-Wredundant-decls	\
19	-Wno-unused-parameter	\
20	-Wno-sign-compare
21
22INCLUDES=			\
23	-I. -I../include	\
24	-I../docBase		\
25	-I../docBuf		\
26	-I../bitmap		\
27	-I../utilPs		\
28	-I../docFont		\
29	-I../textEncoding	\
30	-I../appUtil
31
32CFLAGS=	\
33	@CFLAGS@		\
34	$(INCLUDES)
35
36#CFLAGS= -g -O2 $(WFLAGS) $(INCLUDES)
37
38# 55!!obs
39OBS	=	\
40		docRtfWriteText.o\
41		docRtfWriterImpl.o\
42		docRtfWritePictureTags.o\
43		docRtfWriteNode.o\
44		docRtfWriteMail.o\
45		docRtfWriteListTable.o\
46		docRtfWriteColorTable.o\
47		docRtfTextProperties.o\
48		docRtfTextConverter.o\
49		docRtfTagHash.o\
50		docRtfTabs.o\
51		docRtfTables.o\
52		docRtfTab.o\
53		docRtfStylesheet.o\
54		docRtfShpTab.o\
55		docRtfShapePropHash.o\
56		docRtfShading.o\
57		docRtfSaveTextAttribute.o\
58		docRtfSaveStylesheet.o\
59		docRtfSaveSectProperties.o\
60		docRtfSaveRowProperties.o\
61		docRtfSaveParaProperties.o\
62		docRtfSaveParagraph.o\
63		docRtfSaveNotesProperties.o\
64		docRtfSaveFontTable.o\
65		docRtfSaveField.o\
66		docRtfSaveDocumentProperties.o\
67		docRtfSaveDocument.o\
68		docRtfSaveCellProperties.o\
69		docRtfReadText.o\
70		docRtfReadShape.o\
71		docRtfReadSectProperties.o\
72		docRtfReadRtf.o\
73		docRtfReadRowProperties.o\
74		docRtfReadParaProperties.o\
75		docRtfReadObjects.o\
76		docRtfReadNodeTree.o\
77		docRtfReadListTable.o\
78		docRtfReadFontTable.o\
79		docRtfReadField.o\
80		docRtfReaderImpl.o\
81		docRtfReadDocumentTree.o\
82		docRtfReadDocumentProperties.o\
83		docRtfReadColorTable.o\
84		docRtfReadCellProperties.o\
85		docRtfRead.o\
86		docRtfParaNumber.o\
87		docRtfListOverrideTable.o\
88		docRtfFrameProperties.o\
89		docRtfDrawingObject.o\
90		docRtfBorderProperties.o\
91		docPlainWrite.o\
92		docPlainRead.o
93
94../lib/docRtf.a:	$(OBS)
95	ar ruv $@ $(OBS) && @RANLIB@ $@
96
97#
98#  This is cyclic, but at least it documents what extra autoconf configuration
99#  is used in this directory:
100#
101PROPERTYLIBS=	../lib/appUtil.a		\
102		../lib/textEncoding.a		\
103		../lib/docBuf.a			\
104		../lib/docBase.a
105
106doctaghash: doctaghash.o $(PROPERTYLIBS)
107	$(CC) $(LDFLAGS) -o $@ doctaghash.o $(PROPERTYLIBS) -lm
108
109docRtfTagHash.c : docRtfTab.c
110	sed -e 's/BUILD_NO_HASH/BUILD_HASH/' docRtfTab.c > doctaghash.c
111	make doctaghash
112	./doctaghash
113	rm -f doctaghash doctaghash.o doctaghash.c
114
115docshpprophash: docshpprophash.o $(PROPERTYLIBS)
116	$(CC) $(LDFLAGS) -o $@ docshpprophash.o $(PROPERTYLIBS) -lm
117
118docRtfShapePropHash.c : docRtfShpTab.c
119	sed -e 's/BUILD_NO_HASH/BUILD_HASH/' docRtfShpTab.c > docshpprophash.c
120	make docshpprophash
121	./docshpprophash
122	rm -f docshpprophash docshpprophash.o docshpprophash.c
123
124duplicates:
125	nm *.o | grep -w [Tt] | \
126	while read addr t name; do echo $$name; done | sort | uniq -c | sort -n
127
128includes:
129	includes.sh docRtfConfig.h $(INCLUDES)
130
131# deps -I. -I../include -I../docBuf -I../docBase -I../bitmap  -I../textEncoding -I../appUtil -I ../docFont -I../utilPs
132######################################## !! sh
133
134docPlainRead.o: \
135    docPlainRead.c \
136    docRtfConfig.h \
137    ../include/appDebugon.h \
138    ../include/appDebug.h \
139    ../appUtil/sioMemory.h \
140    ../appUtil/sioGeneral.h \
141    ../appUtil/utilMemoryBuffer.h \
142    ../docBuf/docBuf.h \
143    ../bitmap/bitmap.h \
144    ../appUtil/utilColor.h \
145    ../appUtil/utilPalette.h \
146    ../appUtil/utilColor.h \
147    ../appUtil/utilMemoryBuffer.h \
148    ../appUtil/geo2DInteger.h \
149    ../utilPs/psPostScriptFontList.h \
150    ../utilPs/psFontFamily.h \
151    ../utilPs/psFontInfo.h \
152    ../appUtil/utilIndexSet.h \
153    ../appUtil/utilIndexMapping.h \
154    ../docBase/docFramePropertiesAdmin.h \
155    ../docBase/docFrameProperties.h \
156    ../docBase/docPropVal.h \
157    ../appUtil/utilIntegerValueNode.h \
158    ../appUtil/utilNumberedPropertiesAdmin.h \
159    ../appUtil/utilIntegerValueNode.h \
160    ../appUtil/utilPagedList.h \
161    ../appUtil/utilIndexSet.h \
162    ../docBase/docStyleSheet.h \
163    ../docBase/docStyle.h \
164    ../appUtil/utilPropMask.h \
165    ../docBase/docSectProperties.h \
166    ../appUtil/utilDocumentGeometry.h \
167    ../appUtil/utilPropMask.h \
168    ../appUtil/geo2DInteger.h \
169    ../docBase/docNotesProperties.h \
170    ../docBase/docRowProperties.h \
171    ../docBase/docCellProperties.h \
172    ../docBase/docItemShading.h \
173    ../docBase/docDocumentAttributeMap.h \
174    ../docBase/docParaProperties.h \
175    ../docBase/docParaNumber.h \
176    ../utilPs/textAttribute.h \
177    ../docBase/docDocumentProperties.h \
178    ../docFont/utilDocFontList.h \
179    ../docFont/utilDocFont.h \
180    ../utilPs/psFontInfo.h \
181    ../textEncoding/textOfficeCharset.h \
182    ../docBase/docListAdmin.h \
183    ../docBase/docListTable.h \
184    ../docBase/docListOverrideTable.h \
185    ../docBase/docDocumentFieldList.h \
186    ../appUtil/utilPagedList.h \
187    ../docBuf/docDrawingShapeList.h \
188    ../docBase/docInsertedObjectList.h \
189    ../docBase/docObject.h \
190    ../docBase/docLayoutPosition.h \
191    ../docBase/docPictureProperties.h \
192    ../docBuf/docSelect.h \
193    ../docBase/docLayoutPosition.h \
194    ../docBase/docSelectionScope.h \
195    ../docBase/docEditPosition.h \
196    ../docBase/docEditRange.h \
197    ../docBase/docEditPosition.h \
198    ../docBuf/docTableRectangle.h \
199    ../docBuf/docDocumentTree.h \
200    ../docBase/docDocumentField.h \
201    ../docBase/docFieldInstructions.h \
202    ../docBase/docSelectionScope.h \
203    ../docBase/docEditRange.h \
204    ../docBase/docListNumberTree.h \
205    ../docBase/docListTable.h \
206    ../docBuf/docNodeTree.h \
207    ../docBuf/docParaString.h \
208    ../docBuf/docBuf.h \
209    ../docBuf/docTreeNode.h \
210    ../docBuf/docParaNode.h \
211    ../docBase/docParaProperties.h \
212    ../docBuf/docCellNode.h \
213    ../docBuf/docRowNode.h \
214    ../docBase/docRowProperties.h \
215    ../docBuf/docSectNode.h \
216    ../docBase/docSectProperties.h \
217    ../docBuf/docParaParticules.h \
218    ../docBase/docTextParticule.h \
219    ../docBase/docTextLine.h \
220    ../textEncoding/textConverter.h \
221    ../textEncoding/textConverterImpl.h \
222    ../textEncoding/textConverter.h \
223    ../textEncoding/sioUtf8.h \
224    ../appUtil/sioGeneral.h \
225    docPlainReadWrite.h
226
227docPlainWrite.o: \
228    docPlainWrite.c \
229    docRtfConfig.h \
230    ../docBuf/docBuf.h \
231    ../bitmap/bitmap.h \
232    ../appUtil/utilColor.h \
233    ../appUtil/utilPalette.h \
234    ../appUtil/utilColor.h \
235    ../appUtil/utilMemoryBuffer.h \
236    ../appUtil/geo2DInteger.h \
237    ../utilPs/psPostScriptFontList.h \
238    ../utilPs/psFontFamily.h \
239    ../utilPs/psFontInfo.h \
240    ../appUtil/utilIndexSet.h \
241    ../appUtil/utilIndexMapping.h \
242    ../docBase/docFramePropertiesAdmin.h \
243    ../docBase/docFrameProperties.h \
244    ../docBase/docPropVal.h \
245    ../appUtil/utilIntegerValueNode.h \
246    ../appUtil/utilNumberedPropertiesAdmin.h \
247    ../appUtil/utilIntegerValueNode.h \
248    ../appUtil/utilPagedList.h \
249    ../appUtil/utilIndexSet.h \
250    ../docBase/docStyleSheet.h \
251    ../docBase/docStyle.h \
252    ../appUtil/utilPropMask.h \
253    ../docBase/docSectProperties.h \
254    ../appUtil/utilDocumentGeometry.h \
255    ../appUtil/utilPropMask.h \
256    ../appUtil/geo2DInteger.h \
257    ../docBase/docNotesProperties.h \
258    ../docBase/docRowProperties.h \
259    ../docBase/docCellProperties.h \
260    ../docBase/docItemShading.h \
261    ../docBase/docDocumentAttributeMap.h \
262    ../docBase/docParaProperties.h \
263    ../docBase/docParaNumber.h \
264    ../utilPs/textAttribute.h \
265    ../docBase/docDocumentProperties.h \
266    ../docFont/utilDocFontList.h \
267    ../docFont/utilDocFont.h \
268    ../utilPs/psFontInfo.h \
269    ../textEncoding/textOfficeCharset.h \
270    ../docBase/docListAdmin.h \
271    ../docBase/docListTable.h \
272    ../docBase/docListOverrideTable.h \
273    ../docBase/docDocumentFieldList.h \
274    ../appUtil/utilPagedList.h \
275    ../docBuf/docDrawingShapeList.h \
276    ../docBase/docInsertedObjectList.h \
277    ../docBase/docObject.h \
278    ../docBase/docLayoutPosition.h \
279    ../docBase/docPictureProperties.h \
280    ../docBuf/docSelect.h \
281    ../docBase/docLayoutPosition.h \
282    ../docBase/docSelectionScope.h \
283    ../docBase/docEditPosition.h \
284    ../docBase/docEditRange.h \
285    ../docBase/docEditPosition.h \
286    ../docBuf/docTableRectangle.h \
287    ../docBuf/docDocumentTree.h \
288    ../docBase/docDocumentField.h \
289    ../docBase/docFieldInstructions.h \
290    ../docBase/docSelectionScope.h \
291    ../docBase/docEditRange.h \
292    ../docBase/docListNumberTree.h \
293    ../docBase/docListTable.h \
294    ../docBuf/docNotes.h \
295    ../docBuf/docTreeNode.h \
296    ../docBuf/docParaNode.h \
297    ../docBase/docParaProperties.h \
298    ../docBuf/docCellNode.h \
299    ../docBuf/docRowNode.h \
300    ../docBase/docRowProperties.h \
301    ../docBuf/docSectNode.h \
302    ../docBase/docSectProperties.h \
303    ../docBuf/docNodeTree.h \
304    ../docBase/docTreeType.h \
305    ../docBuf/docTreeScanner.h \
306    ../docBuf/docBuf.h \
307    docPlainReadWrite.h \
308    ../appUtil/sioGeneral.h \
309    ../docBuf/docParaParticules.h \
310    ../docBase/docTextParticule.h \
311    ../docBase/docTextLine.h \
312    ../docBuf/docTreeNode.h \
313    ../docBuf/docDocumentNote.h \
314    ../docBase/docNoteProperties.h \
315    ../include/appDebugon.h \
316    ../include/appDebug.h
317
318docRtfBorderProperties.o: \
319    docRtfBorderProperties.c \
320    docRtfConfig.h \
321    ../include/appDebugon.h \
322    ../include/appDebug.h \
323    docRtfWriterImpl.h \
324    ../docBuf/docBuf.h \
325    ../bitmap/bitmap.h \
326    ../appUtil/utilColor.h \
327    ../appUtil/utilPalette.h \
328    ../appUtil/utilColor.h \
329    ../appUtil/utilMemoryBuffer.h \
330    ../appUtil/geo2DInteger.h \
331    ../utilPs/psPostScriptFontList.h \
332    ../utilPs/psFontFamily.h \
333    ../utilPs/psFontInfo.h \
334    ../appUtil/utilIndexSet.h \
335    ../appUtil/utilIndexMapping.h \
336    ../docBase/docFramePropertiesAdmin.h \
337    ../docBase/docFrameProperties.h \
338    ../docBase/docPropVal.h \
339    ../appUtil/utilIntegerValueNode.h \
340    ../appUtil/utilNumberedPropertiesAdmin.h \
341    ../appUtil/utilIntegerValueNode.h \
342    ../appUtil/utilPagedList.h \
343    ../appUtil/utilIndexSet.h \
344    ../docBase/docStyleSheet.h \
345    ../docBase/docStyle.h \
346    ../appUtil/utilPropMask.h \
347    ../docBase/docSectProperties.h \
348    ../appUtil/utilDocumentGeometry.h \
349    ../appUtil/utilPropMask.h \
350    ../appUtil/geo2DInteger.h \
351    ../docBase/docNotesProperties.h \
352    ../docBase/docRowProperties.h \
353    ../docBase/docCellProperties.h \
354    ../docBase/docItemShading.h \
355    ../docBase/docDocumentAttributeMap.h \
356    ../docBase/docParaProperties.h \
357    ../docBase/docParaNumber.h \
358    ../utilPs/textAttribute.h \
359    ../docBase/docDocumentProperties.h \
360    ../docFont/utilDocFontList.h \
361    ../docFont/utilDocFont.h \
362    ../utilPs/psFontInfo.h \
363    ../textEncoding/textOfficeCharset.h \
364    ../docBase/docListAdmin.h \
365    ../docBase/docListTable.h \
366    ../docBase/docListOverrideTable.h \
367    ../docBase/docDocumentFieldList.h \
368    ../appUtil/utilPagedList.h \
369    ../docBuf/docDrawingShapeList.h \
370    ../docBase/docInsertedObjectList.h \
371    ../docBase/docObject.h \
372    ../docBase/docLayoutPosition.h \
373    ../docBase/docPictureProperties.h \
374    ../docBuf/docSelect.h \
375    ../docBase/docLayoutPosition.h \
376    ../docBase/docSelectionScope.h \
377    ../docBase/docEditPosition.h \
378    ../docBase/docEditRange.h \
379    ../docBase/docEditPosition.h \
380    ../docBuf/docTableRectangle.h \
381    ../docBuf/docDocumentTree.h \
382    ../docBase/docDocumentField.h \
383    ../docBase/docFieldInstructions.h \
384    ../docBase/docSelectionScope.h \
385    ../docBase/docEditRange.h \
386    ../docBase/docListNumberTree.h \
387    ../docBase/docListTable.h \
388    ../appUtil/sioGeneral.h \
389    docRtfWriter.h \
390    docRtfReaderImpl.h \
391    ../docBase/docNoteProperties.h \
392    ../docBase/docTabStop.h \
393    ../docBase/docTabStopList.h \
394    ../docBase/docTabStop.h \
395    ../docBase/docListOverride.h \
396    ../docBase/docListOverrideLevel.h \
397    ../docBase/docListLevel.h \
398    ../docBase/docListDepth.h \
399    ../docBase/docDocumentList.h \
400    ../docBase/docBorderProperties.h \
401    docRtfTextConverter.h \
402    docRtfControlWord.h \
403    docRtfTags.h
404
405docRtfDrawingObject.o: \
406    docRtfDrawingObject.c \
407    docRtfConfig.h \
408    ../bitmap/bitmap.h \
409    ../appUtil/utilColor.h \
410    ../appUtil/utilPalette.h \
411    ../appUtil/utilColor.h \
412    ../appUtil/utilMemoryBuffer.h \
413    ../appUtil/geo2DInteger.h \
414    ../docBase/docDrawingObject.h \
415    ../docBuf/docShape.h \
416    ../appUtil/geoAffineTransform.h \
417    ../docBase/docShapeProperties.h \
418    ../docBase/docPictureProperties.h \
419    ../appUtil/utilPropMask.h \
420    ../docBuf/docDocumentTree.h \
421    ../docBase/docDocumentField.h \
422    ../docBase/docFieldInstructions.h \
423    ../docBase/docSelectionScope.h \
424    ../docBase/docEditRange.h \
425    ../docBase/docEditPosition.h \
426    ../docBase/docListNumberTree.h \
427    ../docBase/docShapeDrawing.h \
428    ../include/appDebugon.h \
429    ../include/appDebug.h \
430    docRtfReaderImpl.h \
431    ../docBuf/docBuf.h \
432    ../utilPs/psPostScriptFontList.h \
433    ../utilPs/psFontFamily.h \
434    ../utilPs/psFontInfo.h \
435    ../appUtil/utilIndexSet.h \
436    ../appUtil/utilIndexMapping.h \
437    ../docBase/docFramePropertiesAdmin.h \
438    ../docBase/docFrameProperties.h \
439    ../docBase/docPropVal.h \
440    ../appUtil/utilIntegerValueNode.h \
441    ../appUtil/utilNumberedPropertiesAdmin.h \
442    ../appUtil/utilIntegerValueNode.h \
443    ../appUtil/utilPagedList.h \
444    ../appUtil/utilIndexSet.h \
445    ../docBase/docStyleSheet.h \
446    ../docBase/docStyle.h \
447    ../docBase/docSectProperties.h \
448    ../appUtil/utilDocumentGeometry.h \
449    ../appUtil/utilPropMask.h \
450    ../appUtil/geo2DInteger.h \
451    ../docBase/docNotesProperties.h \
452    ../docBase/docRowProperties.h \
453    ../docBase/docCellProperties.h \
454    ../docBase/docItemShading.h \
455    ../docBase/docDocumentAttributeMap.h \
456    ../docBase/docParaProperties.h \
457    ../docBase/docParaNumber.h \
458    ../utilPs/textAttribute.h \
459    ../docBase/docDocumentProperties.h \
460    ../docFont/utilDocFontList.h \
461    ../docFont/utilDocFont.h \
462    ../utilPs/psFontInfo.h \
463    ../textEncoding/textOfficeCharset.h \
464    ../docBase/docListAdmin.h \
465    ../docBase/docListTable.h \
466    ../docBase/docListOverrideTable.h \
467    ../docBase/docDocumentFieldList.h \
468    ../appUtil/utilPagedList.h \
469    ../docBuf/docDrawingShapeList.h \
470    ../docBase/docInsertedObjectList.h \
471    ../docBase/docObject.h \
472    ../docBase/docLayoutPosition.h \
473    ../docBase/docPictureProperties.h \
474    ../docBuf/docSelect.h \
475    ../docBase/docLayoutPosition.h \
476    ../docBase/docSelectionScope.h \
477    ../docBase/docEditPosition.h \
478    ../docBase/docEditRange.h \
479    ../docBuf/docTableRectangle.h \
480    ../docBase/docListTable.h \
481    ../docBase/docNoteProperties.h \
482    ../appUtil/sioGeneral.h \
483    ../docBase/docTabStop.h \
484    ../docBase/docTabStopList.h \
485    ../docBase/docTabStop.h \
486    ../docBase/docListOverride.h \
487    ../docBase/docListOverrideLevel.h \
488    ../docBase/docListLevel.h \
489    ../docBase/docListDepth.h \
490    ../docBase/docDocumentList.h \
491    ../docBase/docBorderProperties.h \
492    docRtfTextConverter.h \
493    docRtfControlWord.h
494
495docRtfFrameProperties.o: \
496    docRtfFrameProperties.c \
497    docRtfConfig.h \
498    ../include/appDebugon.h \
499    ../include/appDebug.h \
500    docRtfWriterImpl.h \
501    ../docBuf/docBuf.h \
502    ../bitmap/bitmap.h \
503    ../appUtil/utilColor.h \
504    ../appUtil/utilPalette.h \
505    ../appUtil/utilColor.h \
506    ../appUtil/utilMemoryBuffer.h \
507    ../appUtil/geo2DInteger.h \
508    ../utilPs/psPostScriptFontList.h \
509    ../utilPs/psFontFamily.h \
510    ../utilPs/psFontInfo.h \
511    ../appUtil/utilIndexSet.h \
512    ../appUtil/utilIndexMapping.h \
513    ../docBase/docFramePropertiesAdmin.h \
514    ../docBase/docFrameProperties.h \
515    ../docBase/docPropVal.h \
516    ../appUtil/utilIntegerValueNode.h \
517    ../appUtil/utilNumberedPropertiesAdmin.h \
518    ../appUtil/utilIntegerValueNode.h \
519    ../appUtil/utilPagedList.h \
520    ../appUtil/utilIndexSet.h \
521    ../docBase/docStyleSheet.h \
522    ../docBase/docStyle.h \
523    ../appUtil/utilPropMask.h \
524    ../docBase/docSectProperties.h \
525    ../appUtil/utilDocumentGeometry.h \
526    ../appUtil/utilPropMask.h \
527    ../appUtil/geo2DInteger.h \
528    ../docBase/docNotesProperties.h \
529    ../docBase/docRowProperties.h \
530    ../docBase/docCellProperties.h \
531    ../docBase/docItemShading.h \
532    ../docBase/docDocumentAttributeMap.h \
533    ../docBase/docParaProperties.h \
534    ../docBase/docParaNumber.h \
535    ../utilPs/textAttribute.h \
536    ../docBase/docDocumentProperties.h \
537    ../docFont/utilDocFontList.h \
538    ../docFont/utilDocFont.h \
539    ../utilPs/psFontInfo.h \
540    ../textEncoding/textOfficeCharset.h \
541    ../docBase/docListAdmin.h \
542    ../docBase/docListTable.h \
543    ../docBase/docListOverrideTable.h \
544    ../docBase/docDocumentFieldList.h \
545    ../appUtil/utilPagedList.h \
546    ../docBuf/docDrawingShapeList.h \
547    ../docBase/docInsertedObjectList.h \
548    ../docBase/docObject.h \
549    ../docBase/docLayoutPosition.h \
550    ../docBase/docPictureProperties.h \
551    ../docBuf/docSelect.h \
552    ../docBase/docLayoutPosition.h \
553    ../docBase/docSelectionScope.h \
554    ../docBase/docEditPosition.h \
555    ../docBase/docEditRange.h \
556    ../docBase/docEditPosition.h \
557    ../docBuf/docTableRectangle.h \
558    ../docBuf/docDocumentTree.h \
559    ../docBase/docDocumentField.h \
560    ../docBase/docFieldInstructions.h \
561    ../docBase/docSelectionScope.h \
562    ../docBase/docEditRange.h \
563    ../docBase/docListNumberTree.h \
564    ../docBase/docListTable.h \
565    ../appUtil/sioGeneral.h \
566    docRtfWriter.h \
567    docRtfReaderImpl.h \
568    ../docBase/docNoteProperties.h \
569    ../docBase/docTabStop.h \
570    ../docBase/docTabStopList.h \
571    ../docBase/docTabStop.h \
572    ../docBase/docListOverride.h \
573    ../docBase/docListOverrideLevel.h \
574    ../docBase/docListLevel.h \
575    ../docBase/docListDepth.h \
576    ../docBase/docDocumentList.h \
577    ../docBase/docBorderProperties.h \
578    docRtfTextConverter.h \
579    docRtfControlWord.h
580
581docRtfListOverrideTable.o: \
582    docRtfListOverrideTable.c \
583    docRtfConfig.h \
584    docRtfWriterImpl.h \
585    ../docBuf/docBuf.h \
586    ../bitmap/bitmap.h \
587    ../appUtil/utilColor.h \
588    ../appUtil/utilPalette.h \
589    ../appUtil/utilColor.h \
590    ../appUtil/utilMemoryBuffer.h \
591    ../appUtil/geo2DInteger.h \
592    ../utilPs/psPostScriptFontList.h \
593    ../utilPs/psFontFamily.h \
594    ../utilPs/psFontInfo.h \
595    ../appUtil/utilIndexSet.h \
596    ../appUtil/utilIndexMapping.h \
597    ../docBase/docFramePropertiesAdmin.h \
598    ../docBase/docFrameProperties.h \
599    ../docBase/docPropVal.h \
600    ../appUtil/utilIntegerValueNode.h \
601    ../appUtil/utilNumberedPropertiesAdmin.h \
602    ../appUtil/utilIntegerValueNode.h \
603    ../appUtil/utilPagedList.h \
604    ../appUtil/utilIndexSet.h \
605    ../docBase/docStyleSheet.h \
606    ../docBase/docStyle.h \
607    ../appUtil/utilPropMask.h \
608    ../docBase/docSectProperties.h \
609    ../appUtil/utilDocumentGeometry.h \
610    ../appUtil/utilPropMask.h \
611    ../appUtil/geo2DInteger.h \
612    ../docBase/docNotesProperties.h \
613    ../docBase/docRowProperties.h \
614    ../docBase/docCellProperties.h \
615    ../docBase/docItemShading.h \
616    ../docBase/docDocumentAttributeMap.h \
617    ../docBase/docParaProperties.h \
618    ../docBase/docParaNumber.h \
619    ../utilPs/textAttribute.h \
620    ../docBase/docDocumentProperties.h \
621    ../docFont/utilDocFontList.h \
622    ../docFont/utilDocFont.h \
623    ../utilPs/psFontInfo.h \
624    ../textEncoding/textOfficeCharset.h \
625    ../docBase/docListAdmin.h \
626    ../docBase/docListTable.h \
627    ../docBase/docListOverrideTable.h \
628    ../docBase/docDocumentFieldList.h \
629    ../appUtil/utilPagedList.h \
630    ../docBuf/docDrawingShapeList.h \
631    ../docBase/docInsertedObjectList.h \
632    ../docBase/docObject.h \
633    ../docBase/docLayoutPosition.h \
634    ../docBase/docPictureProperties.h \
635    ../docBuf/docSelect.h \
636    ../docBase/docLayoutPosition.h \
637    ../docBase/docSelectionScope.h \
638    ../docBase/docEditPosition.h \
639    ../docBase/docEditRange.h \
640    ../docBase/docEditPosition.h \
641    ../docBuf/docTableRectangle.h \
642    ../docBuf/docDocumentTree.h \
643    ../docBase/docDocumentField.h \
644    ../docBase/docFieldInstructions.h \
645    ../docBase/docSelectionScope.h \
646    ../docBase/docEditRange.h \
647    ../docBase/docListNumberTree.h \
648    ../docBase/docListTable.h \
649    ../appUtil/sioGeneral.h \
650    docRtfWriter.h \
651    docRtfReaderImpl.h \
652    ../docBase/docNoteProperties.h \
653    ../docBase/docTabStop.h \
654    ../docBase/docTabStopList.h \
655    ../docBase/docTabStop.h \
656    ../docBase/docListOverride.h \
657    ../docBase/docListOverrideLevel.h \
658    ../docBase/docListLevel.h \
659    ../docBase/docListDepth.h \
660    ../docBase/docDocumentList.h \
661    ../docBase/docBorderProperties.h \
662    docRtfTextConverter.h \
663    docRtfControlWord.h \
664    ../docBase/docListAdmin.h \
665    ../include/appDebugon.h \
666    ../include/appDebug.h
667
668docRtfParaNumber.o: \
669    docRtfParaNumber.c \
670    docRtfConfig.h \
671    ../include/appDebugon.h \
672    ../include/appDebug.h \
673    docRtfReaderImpl.h \
674    ../docBuf/docBuf.h \
675    ../bitmap/bitmap.h \
676    ../appUtil/utilColor.h \
677    ../appUtil/utilPalette.h \
678    ../appUtil/utilColor.h \
679    ../appUtil/utilMemoryBuffer.h \
680    ../appUtil/geo2DInteger.h \
681    ../utilPs/psPostScriptFontList.h \
682    ../utilPs/psFontFamily.h \
683    ../utilPs/psFontInfo.h \
684    ../appUtil/utilIndexSet.h \
685    ../appUtil/utilIndexMapping.h \
686    ../docBase/docFramePropertiesAdmin.h \
687    ../docBase/docFrameProperties.h \
688    ../docBase/docPropVal.h \
689    ../appUtil/utilIntegerValueNode.h \
690    ../appUtil/utilNumberedPropertiesAdmin.h \
691    ../appUtil/utilIntegerValueNode.h \
692    ../appUtil/utilPagedList.h \
693    ../appUtil/utilIndexSet.h \
694    ../docBase/docStyleSheet.h \
695    ../docBase/docStyle.h \
696    ../appUtil/utilPropMask.h \
697    ../docBase/docSectProperties.h \
698    ../appUtil/utilDocumentGeometry.h \
699    ../appUtil/utilPropMask.h \
700    ../appUtil/geo2DInteger.h \
701    ../docBase/docNotesProperties.h \
702    ../docBase/docRowProperties.h \
703    ../docBase/docCellProperties.h \
704    ../docBase/docItemShading.h \
705    ../docBase/docDocumentAttributeMap.h \
706    ../docBase/docParaProperties.h \
707    ../docBase/docParaNumber.h \
708    ../utilPs/textAttribute.h \
709    ../docBase/docDocumentProperties.h \
710    ../docFont/utilDocFontList.h \
711    ../docFont/utilDocFont.h \
712    ../utilPs/psFontInfo.h \
713    ../textEncoding/textOfficeCharset.h \
714    ../docBase/docListAdmin.h \
715    ../docBase/docListTable.h \
716    ../docBase/docListOverrideTable.h \
717    ../docBase/docDocumentFieldList.h \
718    ../appUtil/utilPagedList.h \
719    ../docBuf/docDrawingShapeList.h \
720    ../docBase/docInsertedObjectList.h \
721    ../docBase/docObject.h \
722    ../docBase/docLayoutPosition.h \
723    ../docBase/docPictureProperties.h \
724    ../docBuf/docSelect.h \
725    ../docBase/docLayoutPosition.h \
726    ../docBase/docSelectionScope.h \
727    ../docBase/docEditPosition.h \
728    ../docBase/docEditRange.h \
729    ../docBase/docEditPosition.h \
730    ../docBuf/docTableRectangle.h \
731    ../docBuf/docDocumentTree.h \
732    ../docBase/docDocumentField.h \
733    ../docBase/docFieldInstructions.h \
734    ../docBase/docSelectionScope.h \
735    ../docBase/docEditRange.h \
736    ../docBase/docListNumberTree.h \
737    ../docBase/docListTable.h \
738    ../docBase/docNoteProperties.h \
739    ../appUtil/sioGeneral.h \
740    ../docBase/docTabStop.h \
741    ../docBase/docTabStopList.h \
742    ../docBase/docTabStop.h \
743    ../docBase/docListOverride.h \
744    ../docBase/docListOverrideLevel.h \
745    ../docBase/docListLevel.h \
746    ../docBase/docListDepth.h \
747    ../docBase/docDocumentList.h \
748    ../docBase/docBorderProperties.h \
749    docRtfTextConverter.h \
750    docRtfControlWord.h \
751    docRtfTagEnum.h
752
753docRtfRead.o: \
754    docRtfRead.c \
755    docRtfConfig.h \
756    ../include/appDebugon.h \
757    ../include/appDebug.h \
758    docRtfReaderImpl.h \
759    ../docBuf/docBuf.h \
760    ../bitmap/bitmap.h \
761    ../appUtil/utilColor.h \
762    ../appUtil/utilPalette.h \
763    ../appUtil/utilColor.h \
764    ../appUtil/utilMemoryBuffer.h \
765    ../appUtil/geo2DInteger.h \
766    ../utilPs/psPostScriptFontList.h \
767    ../utilPs/psFontFamily.h \
768    ../utilPs/psFontInfo.h \
769    ../appUtil/utilIndexSet.h \
770    ../appUtil/utilIndexMapping.h \
771    ../docBase/docFramePropertiesAdmin.h \
772    ../docBase/docFrameProperties.h \
773    ../docBase/docPropVal.h \
774    ../appUtil/utilIntegerValueNode.h \
775    ../appUtil/utilNumberedPropertiesAdmin.h \
776    ../appUtil/utilIntegerValueNode.h \
777    ../appUtil/utilPagedList.h \
778    ../appUtil/utilIndexSet.h \
779    ../docBase/docStyleSheet.h \
780    ../docBase/docStyle.h \
781    ../appUtil/utilPropMask.h \
782    ../docBase/docSectProperties.h \
783    ../appUtil/utilDocumentGeometry.h \
784    ../appUtil/utilPropMask.h \
785    ../appUtil/geo2DInteger.h \
786    ../docBase/docNotesProperties.h \
787    ../docBase/docRowProperties.h \
788    ../docBase/docCellProperties.h \
789    ../docBase/docItemShading.h \
790    ../docBase/docDocumentAttributeMap.h \
791    ../docBase/docParaProperties.h \
792    ../docBase/docParaNumber.h \
793    ../utilPs/textAttribute.h \
794    ../docBase/docDocumentProperties.h \
795    ../docFont/utilDocFontList.h \
796    ../docFont/utilDocFont.h \
797    ../utilPs/psFontInfo.h \
798    ../textEncoding/textOfficeCharset.h \
799    ../docBase/docListAdmin.h \
800    ../docBase/docListTable.h \
801    ../docBase/docListOverrideTable.h \
802    ../docBase/docDocumentFieldList.h \
803    ../appUtil/utilPagedList.h \
804    ../docBuf/docDrawingShapeList.h \
805    ../docBase/docInsertedObjectList.h \
806    ../docBase/docObject.h \
807    ../docBase/docLayoutPosition.h \
808    ../docBase/docPictureProperties.h \
809    ../docBuf/docSelect.h \
810    ../docBase/docLayoutPosition.h \
811    ../docBase/docSelectionScope.h \
812    ../docBase/docEditPosition.h \
813    ../docBase/docEditRange.h \
814    ../docBase/docEditPosition.h \
815    ../docBuf/docTableRectangle.h \
816    ../docBuf/docDocumentTree.h \
817    ../docBase/docDocumentField.h \
818    ../docBase/docFieldInstructions.h \
819    ../docBase/docSelectionScope.h \
820    ../docBase/docEditRange.h \
821    ../docBase/docListNumberTree.h \
822    ../docBase/docListTable.h \
823    ../docBase/docNoteProperties.h \
824    ../appUtil/sioGeneral.h \
825    ../docBase/docTabStop.h \
826    ../docBase/docTabStopList.h \
827    ../docBase/docTabStop.h \
828    ../docBase/docListOverride.h \
829    ../docBase/docListOverrideLevel.h \
830    ../docBase/docListLevel.h \
831    ../docBase/docListDepth.h \
832    ../docBase/docDocumentList.h \
833    ../docBase/docBorderProperties.h \
834    docRtfTextConverter.h \
835    docRtfControlWord.h \
836    docRtfReadWrite.h \
837    docRtfTagEnum.h \
838    docRtfFlags.h \
839    ../docBuf/docRecalculateFields.h \
840    ../docBuf/docBuf.h \
841    ../docBase/docTreeType.h \
842    ../docBuf/docTreeNode.h \
843    ../docBuf/docParaNode.h \
844    ../docBase/docParaProperties.h \
845    ../docBuf/docCellNode.h \
846    ../docBuf/docRowNode.h \
847    ../docBase/docRowProperties.h \
848    ../docBuf/docSectNode.h \
849    ../docBase/docSectProperties.h \
850    ../docBuf/docNotes.h \
851    ../docBuf/docDebug.h
852
853docRtfReadCellProperties.o: \
854    docRtfReadCellProperties.c \
855    docRtfConfig.h \
856    ../include/appDebugon.h \
857    ../include/appDebug.h \
858    docRtfReaderImpl.h \
859    ../docBuf/docBuf.h \
860    ../bitmap/bitmap.h \
861    ../appUtil/utilColor.h \
862    ../appUtil/utilPalette.h \
863    ../appUtil/utilColor.h \
864    ../appUtil/utilMemoryBuffer.h \
865    ../appUtil/geo2DInteger.h \
866    ../utilPs/psPostScriptFontList.h \
867    ../utilPs/psFontFamily.h \
868    ../utilPs/psFontInfo.h \
869    ../appUtil/utilIndexSet.h \
870    ../appUtil/utilIndexMapping.h \
871    ../docBase/docFramePropertiesAdmin.h \
872    ../docBase/docFrameProperties.h \
873    ../docBase/docPropVal.h \
874    ../appUtil/utilIntegerValueNode.h \
875    ../appUtil/utilNumberedPropertiesAdmin.h \
876    ../appUtil/utilIntegerValueNode.h \
877    ../appUtil/utilPagedList.h \
878    ../appUtil/utilIndexSet.h \
879    ../docBase/docStyleSheet.h \
880    ../docBase/docStyle.h \
881    ../appUtil/utilPropMask.h \
882    ../docBase/docSectProperties.h \
883    ../appUtil/utilDocumentGeometry.h \
884    ../appUtil/utilPropMask.h \
885    ../appUtil/geo2DInteger.h \
886    ../docBase/docNotesProperties.h \
887    ../docBase/docRowProperties.h \
888    ../docBase/docCellProperties.h \
889    ../docBase/docItemShading.h \
890    ../docBase/docDocumentAttributeMap.h \
891    ../docBase/docParaProperties.h \
892    ../docBase/docParaNumber.h \
893    ../utilPs/textAttribute.h \
894    ../docBase/docDocumentProperties.h \
895    ../docFont/utilDocFontList.h \
896    ../docFont/utilDocFont.h \
897    ../utilPs/psFontInfo.h \
898    ../textEncoding/textOfficeCharset.h \
899    ../docBase/docListAdmin.h \
900    ../docBase/docListTable.h \
901    ../docBase/docListOverrideTable.h \
902    ../docBase/docDocumentFieldList.h \
903    ../appUtil/utilPagedList.h \
904    ../docBuf/docDrawingShapeList.h \
905    ../docBase/docInsertedObjectList.h \
906    ../docBase/docObject.h \
907    ../docBase/docLayoutPosition.h \
908    ../docBase/docPictureProperties.h \
909    ../docBuf/docSelect.h \
910    ../docBase/docLayoutPosition.h \
911    ../docBase/docSelectionScope.h \
912    ../docBase/docEditPosition.h \
913    ../docBase/docEditRange.h \
914    ../docBase/docEditPosition.h \
915    ../docBuf/docTableRectangle.h \
916    ../docBuf/docDocumentTree.h \
917    ../docBase/docDocumentField.h \
918    ../docBase/docFieldInstructions.h \
919    ../docBase/docSelectionScope.h \
920    ../docBase/docEditRange.h \
921    ../docBase/docListNumberTree.h \
922    ../docBase/docListTable.h \
923    ../docBase/docNoteProperties.h \
924    ../appUtil/sioGeneral.h \
925    ../docBase/docTabStop.h \
926    ../docBase/docTabStopList.h \
927    ../docBase/docTabStop.h \
928    ../docBase/docListOverride.h \
929    ../docBase/docListOverrideLevel.h \
930    ../docBase/docListLevel.h \
931    ../docBase/docListDepth.h \
932    ../docBase/docDocumentList.h \
933    ../docBase/docBorderProperties.h \
934    docRtfTextConverter.h \
935    docRtfControlWord.h \
936    docRtfTagEnum.h
937
938docRtfReadColorTable.o: \
939    docRtfReadColorTable.c \
940    docRtfConfig.h \
941    ../include/appDebugon.h \
942    ../include/appDebug.h \
943    docRtfReaderImpl.h \
944    ../docBuf/docBuf.h \
945    ../bitmap/bitmap.h \
946    ../appUtil/utilColor.h \
947    ../appUtil/utilPalette.h \
948    ../appUtil/utilColor.h \
949    ../appUtil/utilMemoryBuffer.h \
950    ../appUtil/geo2DInteger.h \
951    ../utilPs/psPostScriptFontList.h \
952    ../utilPs/psFontFamily.h \
953    ../utilPs/psFontInfo.h \
954    ../appUtil/utilIndexSet.h \
955    ../appUtil/utilIndexMapping.h \
956    ../docBase/docFramePropertiesAdmin.h \
957    ../docBase/docFrameProperties.h \
958    ../docBase/docPropVal.h \
959    ../appUtil/utilIntegerValueNode.h \
960    ../appUtil/utilNumberedPropertiesAdmin.h \
961    ../appUtil/utilIntegerValueNode.h \
962    ../appUtil/utilPagedList.h \
963    ../appUtil/utilIndexSet.h \
964    ../docBase/docStyleSheet.h \
965    ../docBase/docStyle.h \
966    ../appUtil/utilPropMask.h \
967    ../docBase/docSectProperties.h \
968    ../appUtil/utilDocumentGeometry.h \
969    ../appUtil/utilPropMask.h \
970    ../appUtil/geo2DInteger.h \
971    ../docBase/docNotesProperties.h \
972    ../docBase/docRowProperties.h \
973    ../docBase/docCellProperties.h \
974    ../docBase/docItemShading.h \
975    ../docBase/docDocumentAttributeMap.h \
976    ../docBase/docParaProperties.h \
977    ../docBase/docParaNumber.h \
978    ../utilPs/textAttribute.h \
979    ../docBase/docDocumentProperties.h \
980    ../docFont/utilDocFontList.h \
981    ../docFont/utilDocFont.h \
982    ../utilPs/psFontInfo.h \
983    ../textEncoding/textOfficeCharset.h \
984    ../docBase/docListAdmin.h \
985    ../docBase/docListTable.h \
986    ../docBase/docListOverrideTable.h \
987    ../docBase/docDocumentFieldList.h \
988    ../appUtil/utilPagedList.h \
989    ../docBuf/docDrawingShapeList.h \
990    ../docBase/docInsertedObjectList.h \
991    ../docBase/docObject.h \
992    ../docBase/docLayoutPosition.h \
993    ../docBase/docPictureProperties.h \
994    ../docBuf/docSelect.h \
995    ../docBase/docLayoutPosition.h \
996    ../docBase/docSelectionScope.h \
997    ../docBase/docEditPosition.h \
998    ../docBase/docEditRange.h \
999    ../docBase/docEditPosition.h \
1000    ../docBuf/docTableRectangle.h \
1001    ../docBuf/docDocumentTree.h \
1002    ../docBase/docDocumentField.h \
1003    ../docBase/docFieldInstructions.h \
1004    ../docBase/docSelectionScope.h \
1005    ../docBase/docEditRange.h \
1006    ../docBase/docListNumberTree.h \
1007    ../docBase/docListTable.h \
1008    ../docBase/docNoteProperties.h \
1009    ../appUtil/sioGeneral.h \
1010    ../docBase/docTabStop.h \
1011    ../docBase/docTabStopList.h \
1012    ../docBase/docTabStop.h \
1013    ../docBase/docListOverride.h \
1014    ../docBase/docListOverrideLevel.h \
1015    ../docBase/docListLevel.h \
1016    ../docBase/docListDepth.h \
1017    ../docBase/docDocumentList.h \
1018    ../docBase/docBorderProperties.h \
1019    docRtfTextConverter.h \
1020    docRtfControlWord.h
1021
1022docRtfReadDocumentProperties.o: \
1023    docRtfReadDocumentProperties.c \
1024    docRtfConfig.h \
1025    ../include/appDebugon.h \
1026    ../include/appDebug.h \
1027    ../appUtil/appUnit.h \
1028    ../textEncoding/textOfficeCharset.h \
1029    ../appUtil/utilIndexMapping.h \
1030    ../appUtil/utilIndexSet.h \
1031    ../textEncoding/textConverter.h \
1032    docRtfReaderImpl.h \
1033    ../docBuf/docBuf.h \
1034    ../bitmap/bitmap.h \
1035    ../appUtil/utilColor.h \
1036    ../appUtil/utilPalette.h \
1037    ../appUtil/utilColor.h \
1038    ../appUtil/utilMemoryBuffer.h \
1039    ../appUtil/geo2DInteger.h \
1040    ../utilPs/psPostScriptFontList.h \
1041    ../utilPs/psFontFamily.h \
1042    ../utilPs/psFontInfo.h \
1043    ../docBase/docFramePropertiesAdmin.h \
1044    ../docBase/docFrameProperties.h \
1045    ../docBase/docPropVal.h \
1046    ../appUtil/utilIntegerValueNode.h \
1047    ../appUtil/utilNumberedPropertiesAdmin.h \
1048    ../appUtil/utilIntegerValueNode.h \
1049    ../appUtil/utilPagedList.h \
1050    ../appUtil/utilIndexSet.h \
1051    ../docBase/docStyleSheet.h \
1052    ../docBase/docStyle.h \
1053    ../appUtil/utilPropMask.h \
1054    ../docBase/docSectProperties.h \
1055    ../appUtil/utilDocumentGeometry.h \
1056    ../appUtil/utilPropMask.h \
1057    ../appUtil/geo2DInteger.h \
1058    ../docBase/docNotesProperties.h \
1059    ../docBase/docRowProperties.h \
1060    ../docBase/docCellProperties.h \
1061    ../docBase/docItemShading.h \
1062    ../docBase/docDocumentAttributeMap.h \
1063    ../docBase/docParaProperties.h \
1064    ../docBase/docParaNumber.h \
1065    ../utilPs/textAttribute.h \
1066    ../docBase/docDocumentProperties.h \
1067    ../docFont/utilDocFontList.h \
1068    ../docFont/utilDocFont.h \
1069    ../utilPs/psFontInfo.h \
1070    ../docBase/docListAdmin.h \
1071    ../docBase/docListTable.h \
1072    ../docBase/docListOverrideTable.h \
1073    ../docBase/docDocumentFieldList.h \
1074    ../appUtil/utilPagedList.h \
1075    ../docBuf/docDrawingShapeList.h \
1076    ../docBase/docInsertedObjectList.h \
1077    ../docBase/docObject.h \
1078    ../docBase/docLayoutPosition.h \
1079    ../docBase/docPictureProperties.h \
1080    ../docBuf/docSelect.h \
1081    ../docBase/docLayoutPosition.h \
1082    ../docBase/docSelectionScope.h \
1083    ../docBase/docEditPosition.h \
1084    ../docBase/docEditRange.h \
1085    ../docBase/docEditPosition.h \
1086    ../docBuf/docTableRectangle.h \
1087    ../docBuf/docDocumentTree.h \
1088    ../docBase/docDocumentField.h \
1089    ../docBase/docFieldInstructions.h \
1090    ../docBase/docSelectionScope.h \
1091    ../docBase/docEditRange.h \
1092    ../docBase/docListNumberTree.h \
1093    ../docBase/docListTable.h \
1094    ../docBase/docNoteProperties.h \
1095    ../appUtil/sioGeneral.h \
1096    ../docBase/docTabStop.h \
1097    ../docBase/docTabStopList.h \
1098    ../docBase/docTabStop.h \
1099    ../docBase/docListOverride.h \
1100    ../docBase/docListOverrideLevel.h \
1101    ../docBase/docListLevel.h \
1102    ../docBase/docListDepth.h \
1103    ../docBase/docDocumentList.h \
1104    ../docBase/docBorderProperties.h \
1105    docRtfTextConverter.h \
1106    docRtfControlWord.h \
1107    docRtfTagEnum.h
1108
1109docRtfReadDocumentTree.o: \
1110    docRtfReadDocumentTree.c \
1111    docRtfConfig.h \
1112    ../include/appDebugon.h \
1113    ../include/appDebug.h \
1114    docRtfReaderImpl.h \
1115    ../docBuf/docBuf.h \
1116    ../bitmap/bitmap.h \
1117    ../appUtil/utilColor.h \
1118    ../appUtil/utilPalette.h \
1119    ../appUtil/utilColor.h \
1120    ../appUtil/utilMemoryBuffer.h \
1121    ../appUtil/geo2DInteger.h \
1122    ../utilPs/psPostScriptFontList.h \
1123    ../utilPs/psFontFamily.h \
1124    ../utilPs/psFontInfo.h \
1125    ../appUtil/utilIndexSet.h \
1126    ../appUtil/utilIndexMapping.h \
1127    ../docBase/docFramePropertiesAdmin.h \
1128    ../docBase/docFrameProperties.h \
1129    ../docBase/docPropVal.h \
1130    ../appUtil/utilIntegerValueNode.h \
1131    ../appUtil/utilNumberedPropertiesAdmin.h \
1132    ../appUtil/utilIntegerValueNode.h \
1133    ../appUtil/utilPagedList.h \
1134    ../appUtil/utilIndexSet.h \
1135    ../docBase/docStyleSheet.h \
1136    ../docBase/docStyle.h \
1137    ../appUtil/utilPropMask.h \
1138    ../docBase/docSectProperties.h \
1139    ../appUtil/utilDocumentGeometry.h \
1140    ../appUtil/utilPropMask.h \
1141    ../appUtil/geo2DInteger.h \
1142    ../docBase/docNotesProperties.h \
1143    ../docBase/docRowProperties.h \
1144    ../docBase/docCellProperties.h \
1145    ../docBase/docItemShading.h \
1146    ../docBase/docDocumentAttributeMap.h \
1147    ../docBase/docParaProperties.h \
1148    ../docBase/docParaNumber.h \
1149    ../utilPs/textAttribute.h \
1150    ../docBase/docDocumentProperties.h \
1151    ../docFont/utilDocFontList.h \
1152    ../docFont/utilDocFont.h \
1153    ../utilPs/psFontInfo.h \
1154    ../textEncoding/textOfficeCharset.h \
1155    ../docBase/docListAdmin.h \
1156    ../docBase/docListTable.h \
1157    ../docBase/docListOverrideTable.h \
1158    ../docBase/docDocumentFieldList.h \
1159    ../appUtil/utilPagedList.h \
1160    ../docBuf/docDrawingShapeList.h \
1161    ../docBase/docInsertedObjectList.h \
1162    ../docBase/docObject.h \
1163    ../docBase/docLayoutPosition.h \
1164    ../docBase/docPictureProperties.h \
1165    ../docBuf/docSelect.h \
1166    ../docBase/docLayoutPosition.h \
1167    ../docBase/docSelectionScope.h \
1168    ../docBase/docEditPosition.h \
1169    ../docBase/docEditRange.h \
1170    ../docBase/docEditPosition.h \
1171    ../docBuf/docTableRectangle.h \
1172    ../docBuf/docDocumentTree.h \
1173    ../docBase/docDocumentField.h \
1174    ../docBase/docFieldInstructions.h \
1175    ../docBase/docSelectionScope.h \
1176    ../docBase/docEditRange.h \
1177    ../docBase/docListNumberTree.h \
1178    ../docBase/docListTable.h \
1179    ../docBase/docNoteProperties.h \
1180    ../appUtil/sioGeneral.h \
1181    ../docBase/docTabStop.h \
1182    ../docBase/docTabStopList.h \
1183    ../docBase/docTabStop.h \
1184    ../docBase/docListOverride.h \
1185    ../docBase/docListOverrideLevel.h \
1186    ../docBase/docListLevel.h \
1187    ../docBase/docListDepth.h \
1188    ../docBase/docDocumentList.h \
1189    ../docBase/docBorderProperties.h \
1190    docRtfTextConverter.h \
1191    docRtfControlWord.h \
1192    ../docBuf/docParaParticules.h \
1193    ../docBuf/docBuf.h \
1194    ../docBase/docTextParticule.h \
1195    ../docBase/docTextLine.h \
1196    ../docBuf/docTreeNode.h \
1197    ../docBuf/docParaNode.h \
1198    ../docBase/docParaProperties.h \
1199    ../docBuf/docCellNode.h \
1200    ../docBuf/docRowNode.h \
1201    ../docBase/docRowProperties.h \
1202    ../docBuf/docSectNode.h \
1203    ../docBase/docSectProperties.h \
1204    ../docBuf/docRecalculateFields.h \
1205    ../docBase/docTreeType.h \
1206    ../docBuf/docNodeTree.h \
1207    ../docBuf/docNotes.h \
1208    ../docBuf/docDocumentNote.h
1209
1210docRtfReadField.o: \
1211    docRtfReadField.c \
1212    docRtfConfig.h \
1213    ../include/appDebugon.h \
1214    ../include/appDebug.h \
1215    docRtfReaderImpl.h \
1216    ../docBuf/docBuf.h \
1217    ../bitmap/bitmap.h \
1218    ../appUtil/utilColor.h \
1219    ../appUtil/utilPalette.h \
1220    ../appUtil/utilColor.h \
1221    ../appUtil/utilMemoryBuffer.h \
1222    ../appUtil/geo2DInteger.h \
1223    ../utilPs/psPostScriptFontList.h \
1224    ../utilPs/psFontFamily.h \
1225    ../utilPs/psFontInfo.h \
1226    ../appUtil/utilIndexSet.h \
1227    ../appUtil/utilIndexMapping.h \
1228    ../docBase/docFramePropertiesAdmin.h \
1229    ../docBase/docFrameProperties.h \
1230    ../docBase/docPropVal.h \
1231    ../appUtil/utilIntegerValueNode.h \
1232    ../appUtil/utilNumberedPropertiesAdmin.h \
1233    ../appUtil/utilIntegerValueNode.h \
1234    ../appUtil/utilPagedList.h \
1235    ../appUtil/utilIndexSet.h \
1236    ../docBase/docStyleSheet.h \
1237    ../docBase/docStyle.h \
1238    ../appUtil/utilPropMask.h \
1239    ../docBase/docSectProperties.h \
1240    ../appUtil/utilDocumentGeometry.h \
1241    ../appUtil/utilPropMask.h \
1242    ../appUtil/geo2DInteger.h \
1243    ../docBase/docNotesProperties.h \
1244    ../docBase/docRowProperties.h \
1245    ../docBase/docCellProperties.h \
1246    ../docBase/docItemShading.h \
1247    ../docBase/docDocumentAttributeMap.h \
1248    ../docBase/docParaProperties.h \
1249    ../docBase/docParaNumber.h \
1250    ../utilPs/textAttribute.h \
1251    ../docBase/docDocumentProperties.h \
1252    ../docFont/utilDocFontList.h \
1253    ../docFont/utilDocFont.h \
1254    ../utilPs/psFontInfo.h \
1255    ../textEncoding/textOfficeCharset.h \
1256    ../docBase/docListAdmin.h \
1257    ../docBase/docListTable.h \
1258    ../docBase/docListOverrideTable.h \
1259    ../docBase/docDocumentFieldList.h \
1260    ../appUtil/utilPagedList.h \
1261    ../docBuf/docDrawingShapeList.h \
1262    ../docBase/docInsertedObjectList.h \
1263    ../docBase/docObject.h \
1264    ../docBase/docLayoutPosition.h \
1265    ../docBase/docPictureProperties.h \
1266    ../docBuf/docSelect.h \
1267    ../docBase/docLayoutPosition.h \
1268    ../docBase/docSelectionScope.h \
1269    ../docBase/docEditPosition.h \
1270    ../docBase/docEditRange.h \
1271    ../docBase/docEditPosition.h \
1272    ../docBuf/docTableRectangle.h \
1273    ../docBuf/docDocumentTree.h \
1274    ../docBase/docDocumentField.h \
1275    ../docBase/docFieldInstructions.h \
1276    ../docBase/docSelectionScope.h \
1277    ../docBase/docEditRange.h \
1278    ../docBase/docListNumberTree.h \
1279    ../docBase/docListTable.h \
1280    ../docBase/docNoteProperties.h \
1281    ../appUtil/sioGeneral.h \
1282    ../docBase/docTabStop.h \
1283    ../docBase/docTabStopList.h \
1284    ../docBase/docTabStop.h \
1285    ../docBase/docListOverride.h \
1286    ../docBase/docListOverrideLevel.h \
1287    ../docBase/docListLevel.h \
1288    ../docBase/docListDepth.h \
1289    ../docBase/docDocumentList.h \
1290    ../docBase/docBorderProperties.h \
1291    docRtfTextConverter.h \
1292    docRtfControlWord.h \
1293    ../docBuf/docField.h \
1294    ../docBuf/docParaParticules.h \
1295    ../docBuf/docBuf.h \
1296    ../docBase/docTextParticule.h \
1297    ../docBase/docTextLine.h \
1298    ../docBuf/docTreeNode.h \
1299    ../docBuf/docParaNode.h \
1300    ../docBase/docParaProperties.h \
1301    ../docBuf/docCellNode.h \
1302    ../docBuf/docRowNode.h \
1303    ../docBase/docRowProperties.h \
1304    ../docBuf/docSectNode.h \
1305    ../docBase/docSectProperties.h \
1306    ../docBase/docTreeType.h \
1307    ../docBase/docBookmarkField.h
1308
1309docRtfReadFontTable.o: \
1310    docRtfReadFontTable.c \
1311    docRtfConfig.h \
1312    ../include/appDebugon.h \
1313    ../include/appDebug.h \
1314    ../textEncoding/textOfficeCharset.h \
1315    ../appUtil/utilIndexMapping.h \
1316    ../appUtil/utilIndexSet.h \
1317    docRtfReaderImpl.h \
1318    ../docBuf/docBuf.h \
1319    ../bitmap/bitmap.h \
1320    ../appUtil/utilColor.h \
1321    ../appUtil/utilPalette.h \
1322    ../appUtil/utilColor.h \
1323    ../appUtil/utilMemoryBuffer.h \
1324    ../appUtil/geo2DInteger.h \
1325    ../utilPs/psPostScriptFontList.h \
1326    ../utilPs/psFontFamily.h \
1327    ../utilPs/psFontInfo.h \
1328    ../docBase/docFramePropertiesAdmin.h \
1329    ../docBase/docFrameProperties.h \
1330    ../docBase/docPropVal.h \
1331    ../appUtil/utilIntegerValueNode.h \
1332    ../appUtil/utilNumberedPropertiesAdmin.h \
1333    ../appUtil/utilIntegerValueNode.h \
1334    ../appUtil/utilPagedList.h \
1335    ../appUtil/utilIndexSet.h \
1336    ../docBase/docStyleSheet.h \
1337    ../docBase/docStyle.h \
1338    ../appUtil/utilPropMask.h \
1339    ../docBase/docSectProperties.h \
1340    ../appUtil/utilDocumentGeometry.h \
1341    ../appUtil/utilPropMask.h \
1342    ../appUtil/geo2DInteger.h \
1343    ../docBase/docNotesProperties.h \
1344    ../docBase/docRowProperties.h \
1345    ../docBase/docCellProperties.h \
1346    ../docBase/docItemShading.h \
1347    ../docBase/docDocumentAttributeMap.h \
1348    ../docBase/docParaProperties.h \
1349    ../docBase/docParaNumber.h \
1350    ../utilPs/textAttribute.h \
1351    ../docBase/docDocumentProperties.h \
1352    ../docFont/utilDocFontList.h \
1353    ../docFont/utilDocFont.h \
1354    ../utilPs/psFontInfo.h \
1355    ../docBase/docListAdmin.h \
1356    ../docBase/docListTable.h \
1357    ../docBase/docListOverrideTable.h \
1358    ../docBase/docDocumentFieldList.h \
1359    ../appUtil/utilPagedList.h \
1360    ../docBuf/docDrawingShapeList.h \
1361    ../docBase/docInsertedObjectList.h \
1362    ../docBase/docObject.h \
1363    ../docBase/docLayoutPosition.h \
1364    ../docBase/docPictureProperties.h \
1365    ../docBuf/docSelect.h \
1366    ../docBase/docLayoutPosition.h \
1367    ../docBase/docSelectionScope.h \
1368    ../docBase/docEditPosition.h \
1369    ../docBase/docEditRange.h \
1370    ../docBase/docEditPosition.h \
1371    ../docBuf/docTableRectangle.h \
1372    ../docBuf/docDocumentTree.h \
1373    ../docBase/docDocumentField.h \
1374    ../docBase/docFieldInstructions.h \
1375    ../docBase/docSelectionScope.h \
1376    ../docBase/docEditRange.h \
1377    ../docBase/docListNumberTree.h \
1378    ../docBase/docListTable.h \
1379    ../docBase/docNoteProperties.h \
1380    ../appUtil/sioGeneral.h \
1381    ../docBase/docTabStop.h \
1382    ../docBase/docTabStopList.h \
1383    ../docBase/docTabStop.h \
1384    ../docBase/docListOverride.h \
1385    ../docBase/docListOverrideLevel.h \
1386    ../docBase/docListLevel.h \
1387    ../docBase/docListDepth.h \
1388    ../docBase/docDocumentList.h \
1389    ../docBase/docBorderProperties.h \
1390    docRtfTextConverter.h \
1391    docRtfControlWord.h \
1392    docRtfTagEnum.h
1393
1394docRtfReadListTable.o: \
1395    docRtfReadListTable.c \
1396    docRtfConfig.h \
1397    ../include/appDebugon.h \
1398    ../include/appDebug.h \
1399    docRtfReaderImpl.h \
1400    ../docBuf/docBuf.h \
1401    ../bitmap/bitmap.h \
1402    ../appUtil/utilColor.h \
1403    ../appUtil/utilPalette.h \
1404    ../appUtil/utilColor.h \
1405    ../appUtil/utilMemoryBuffer.h \
1406    ../appUtil/geo2DInteger.h \
1407    ../utilPs/psPostScriptFontList.h \
1408    ../utilPs/psFontFamily.h \
1409    ../utilPs/psFontInfo.h \
1410    ../appUtil/utilIndexSet.h \
1411    ../appUtil/utilIndexMapping.h \
1412    ../docBase/docFramePropertiesAdmin.h \
1413    ../docBase/docFrameProperties.h \
1414    ../docBase/docPropVal.h \
1415    ../appUtil/utilIntegerValueNode.h \
1416    ../appUtil/utilNumberedPropertiesAdmin.h \
1417    ../appUtil/utilIntegerValueNode.h \
1418    ../appUtil/utilPagedList.h \
1419    ../appUtil/utilIndexSet.h \
1420    ../docBase/docStyleSheet.h \
1421    ../docBase/docStyle.h \
1422    ../appUtil/utilPropMask.h \
1423    ../docBase/docSectProperties.h \
1424    ../appUtil/utilDocumentGeometry.h \
1425    ../appUtil/utilPropMask.h \
1426    ../appUtil/geo2DInteger.h \
1427    ../docBase/docNotesProperties.h \
1428    ../docBase/docRowProperties.h \
1429    ../docBase/docCellProperties.h \
1430    ../docBase/docItemShading.h \
1431    ../docBase/docDocumentAttributeMap.h \
1432    ../docBase/docParaProperties.h \
1433    ../docBase/docParaNumber.h \
1434    ../utilPs/textAttribute.h \
1435    ../docBase/docDocumentProperties.h \
1436    ../docFont/utilDocFontList.h \
1437    ../docFont/utilDocFont.h \
1438    ../utilPs/psFontInfo.h \
1439    ../textEncoding/textOfficeCharset.h \
1440    ../docBase/docListAdmin.h \
1441    ../docBase/docListTable.h \
1442    ../docBase/docListOverrideTable.h \
1443    ../docBase/docDocumentFieldList.h \
1444    ../appUtil/utilPagedList.h \
1445    ../docBuf/docDrawingShapeList.h \
1446    ../docBase/docInsertedObjectList.h \
1447    ../docBase/docObject.h \
1448    ../docBase/docLayoutPosition.h \
1449    ../docBase/docPictureProperties.h \
1450    ../docBuf/docSelect.h \
1451    ../docBase/docLayoutPosition.h \
1452    ../docBase/docSelectionScope.h \
1453    ../docBase/docEditPosition.h \
1454    ../docBase/docEditRange.h \
1455    ../docBase/docEditPosition.h \
1456    ../docBuf/docTableRectangle.h \
1457    ../docBuf/docDocumentTree.h \
1458    ../docBase/docDocumentField.h \
1459    ../docBase/docFieldInstructions.h \
1460    ../docBase/docSelectionScope.h \
1461    ../docBase/docEditRange.h \
1462    ../docBase/docListNumberTree.h \
1463    ../docBase/docListTable.h \
1464    ../docBase/docNoteProperties.h \
1465    ../appUtil/sioGeneral.h \
1466    ../docBase/docTabStop.h \
1467    ../docBase/docTabStopList.h \
1468    ../docBase/docTabStop.h \
1469    ../docBase/docListOverride.h \
1470    ../docBase/docListOverrideLevel.h \
1471    ../docBase/docListLevel.h \
1472    ../docBase/docListDepth.h \
1473    ../docBase/docDocumentList.h \
1474    ../docBase/docBorderProperties.h \
1475    docRtfTextConverter.h \
1476    docRtfControlWord.h \
1477    docRtfTagEnum.h
1478
1479docRtfReadNodeTree.o: \
1480    docRtfReadNodeTree.c \
1481    docRtfConfig.h \
1482    ../include/appDebugon.h \
1483    ../include/appDebug.h \
1484    docRtfReaderImpl.h \
1485    ../docBuf/docBuf.h \
1486    ../bitmap/bitmap.h \
1487    ../appUtil/utilColor.h \
1488    ../appUtil/utilPalette.h \
1489    ../appUtil/utilColor.h \
1490    ../appUtil/utilMemoryBuffer.h \
1491    ../appUtil/geo2DInteger.h \
1492    ../utilPs/psPostScriptFontList.h \
1493    ../utilPs/psFontFamily.h \
1494    ../utilPs/psFontInfo.h \
1495    ../appUtil/utilIndexSet.h \
1496    ../appUtil/utilIndexMapping.h \
1497    ../docBase/docFramePropertiesAdmin.h \
1498    ../docBase/docFrameProperties.h \
1499    ../docBase/docPropVal.h \
1500    ../appUtil/utilIntegerValueNode.h \
1501    ../appUtil/utilNumberedPropertiesAdmin.h \
1502    ../appUtil/utilIntegerValueNode.h \
1503    ../appUtil/utilPagedList.h \
1504    ../appUtil/utilIndexSet.h \
1505    ../docBase/docStyleSheet.h \
1506    ../docBase/docStyle.h \
1507    ../appUtil/utilPropMask.h \
1508    ../docBase/docSectProperties.h \
1509    ../appUtil/utilDocumentGeometry.h \
1510    ../appUtil/utilPropMask.h \
1511    ../appUtil/geo2DInteger.h \
1512    ../docBase/docNotesProperties.h \
1513    ../docBase/docRowProperties.h \
1514    ../docBase/docCellProperties.h \
1515    ../docBase/docItemShading.h \
1516    ../docBase/docDocumentAttributeMap.h \
1517    ../docBase/docParaProperties.h \
1518    ../docBase/docParaNumber.h \
1519    ../utilPs/textAttribute.h \
1520    ../docBase/docDocumentProperties.h \
1521    ../docFont/utilDocFontList.h \
1522    ../docFont/utilDocFont.h \
1523    ../utilPs/psFontInfo.h \
1524    ../textEncoding/textOfficeCharset.h \
1525    ../docBase/docListAdmin.h \
1526    ../docBase/docListTable.h \
1527    ../docBase/docListOverrideTable.h \
1528    ../docBase/docDocumentFieldList.h \
1529    ../appUtil/utilPagedList.h \
1530    ../docBuf/docDrawingShapeList.h \
1531    ../docBase/docInsertedObjectList.h \
1532    ../docBase/docObject.h \
1533    ../docBase/docLayoutPosition.h \
1534    ../docBase/docPictureProperties.h \
1535    ../docBuf/docSelect.h \
1536    ../docBase/docLayoutPosition.h \
1537    ../docBase/docSelectionScope.h \
1538    ../docBase/docEditPosition.h \
1539    ../docBase/docEditRange.h \
1540    ../docBase/docEditPosition.h \
1541    ../docBuf/docTableRectangle.h \
1542    ../docBuf/docDocumentTree.h \
1543    ../docBase/docDocumentField.h \
1544    ../docBase/docFieldInstructions.h \
1545    ../docBase/docSelectionScope.h \
1546    ../docBase/docEditRange.h \
1547    ../docBase/docListNumberTree.h \
1548    ../docBase/docListTable.h \
1549    ../docBase/docNoteProperties.h \
1550    ../appUtil/sioGeneral.h \
1551    ../docBase/docTabStop.h \
1552    ../docBase/docTabStopList.h \
1553    ../docBase/docTabStop.h \
1554    ../docBase/docListOverride.h \
1555    ../docBase/docListOverrideLevel.h \
1556    ../docBase/docListLevel.h \
1557    ../docBase/docListDepth.h \
1558    ../docBase/docDocumentList.h \
1559    ../docBase/docBorderProperties.h \
1560    docRtfTextConverter.h \
1561    docRtfControlWord.h \
1562    ../docBase/docTreeType.h \
1563    ../docBuf/docNodeTree.h \
1564    ../docBuf/docParaParticules.h \
1565    ../docBuf/docBuf.h \
1566    ../docBase/docTextParticule.h \
1567    ../docBase/docTextLine.h \
1568    ../docBuf/docTreeNode.h \
1569    ../docBuf/docParaNode.h \
1570    ../docBase/docParaProperties.h \
1571    ../docBuf/docCellNode.h \
1572    ../docBuf/docRowNode.h \
1573    ../docBase/docRowProperties.h \
1574    ../docBuf/docSectNode.h \
1575    ../docBase/docSectProperties.h
1576
1577docRtfReadObjects.o: \
1578    docRtfReadObjects.c \
1579    docRtfConfig.h \
1580    ../bitmap/bitmap.h \
1581    ../appUtil/utilColor.h \
1582    ../appUtil/utilPalette.h \
1583    ../appUtil/utilColor.h \
1584    ../appUtil/utilMemoryBuffer.h \
1585    ../appUtil/geo2DInteger.h \
1586    ../docBase/docObjectProperties.h \
1587    ../docBuf/docParaParticules.h \
1588    ../docBuf/docBuf.h \
1589    ../utilPs/psPostScriptFontList.h \
1590    ../utilPs/psFontFamily.h \
1591    ../utilPs/psFontInfo.h \
1592    ../appUtil/utilIndexSet.h \
1593    ../appUtil/utilIndexMapping.h \
1594    ../docBase/docFramePropertiesAdmin.h \
1595    ../docBase/docFrameProperties.h \
1596    ../docBase/docPropVal.h \
1597    ../appUtil/utilIntegerValueNode.h \
1598    ../appUtil/utilNumberedPropertiesAdmin.h \
1599    ../appUtil/utilIntegerValueNode.h \
1600    ../appUtil/utilPagedList.h \
1601    ../appUtil/utilIndexSet.h \
1602    ../docBase/docStyleSheet.h \
1603    ../docBase/docStyle.h \
1604    ../appUtil/utilPropMask.h \
1605    ../docBase/docSectProperties.h \
1606    ../appUtil/utilDocumentGeometry.h \
1607    ../appUtil/utilPropMask.h \
1608    ../appUtil/geo2DInteger.h \
1609    ../docBase/docNotesProperties.h \
1610    ../docBase/docRowProperties.h \
1611    ../docBase/docCellProperties.h \
1612    ../docBase/docItemShading.h \
1613    ../docBase/docDocumentAttributeMap.h \
1614    ../docBase/docParaProperties.h \
1615    ../docBase/docParaNumber.h \
1616    ../utilPs/textAttribute.h \
1617    ../docBase/docDocumentProperties.h \
1618    ../docFont/utilDocFontList.h \
1619    ../docFont/utilDocFont.h \
1620    ../utilPs/psFontInfo.h \
1621    ../textEncoding/textOfficeCharset.h \
1622    ../docBase/docListAdmin.h \
1623    ../docBase/docListTable.h \
1624    ../docBase/docListOverrideTable.h \
1625    ../docBase/docDocumentFieldList.h \
1626    ../appUtil/utilPagedList.h \
1627    ../docBuf/docDrawingShapeList.h \
1628    ../docBase/docInsertedObjectList.h \
1629    ../docBase/docObject.h \
1630    ../docBase/docLayoutPosition.h \
1631    ../docBase/docPictureProperties.h \
1632    ../docBuf/docSelect.h \
1633    ../docBase/docLayoutPosition.h \
1634    ../docBase/docSelectionScope.h \
1635    ../docBase/docEditPosition.h \
1636    ../docBase/docEditRange.h \
1637    ../docBase/docEditPosition.h \
1638    ../docBuf/docTableRectangle.h \
1639    ../docBuf/docDocumentTree.h \
1640    ../docBase/docDocumentField.h \
1641    ../docBase/docFieldInstructions.h \
1642    ../docBase/docSelectionScope.h \
1643    ../docBase/docEditRange.h \
1644    ../docBase/docListNumberTree.h \
1645    ../docBase/docListTable.h \
1646    ../docBase/docTextParticule.h \
1647    ../docBase/docTextLine.h \
1648    ../docBuf/docTreeNode.h \
1649    ../docBuf/docParaNode.h \
1650    ../docBase/docParaProperties.h \
1651    ../docBuf/docCellNode.h \
1652    ../docBuf/docRowNode.h \
1653    ../docBase/docRowProperties.h \
1654    ../docBuf/docSectNode.h \
1655    ../docBase/docSectProperties.h \
1656    ../docBuf/docShape.h \
1657    ../appUtil/geoAffineTransform.h \
1658    ../docBase/docShapeProperties.h \
1659    ../docBase/docPictureProperties.h \
1660    ../docBase/docShapeDrawing.h \
1661    ../include/appDebugon.h \
1662    ../include/appDebug.h \
1663    docRtfReaderImpl.h \
1664    ../docBuf/docBuf.h \
1665    ../docBase/docNoteProperties.h \
1666    ../appUtil/sioGeneral.h \
1667    ../docBase/docTabStop.h \
1668    ../docBase/docTabStopList.h \
1669    ../docBase/docTabStop.h \
1670    ../docBase/docListOverride.h \
1671    ../docBase/docListOverrideLevel.h \
1672    ../docBase/docListLevel.h \
1673    ../docBase/docListDepth.h \
1674    ../docBase/docDocumentList.h \
1675    ../docBase/docBorderProperties.h \
1676    docRtfTextConverter.h \
1677    docRtfControlWord.h \
1678    docRtfTagEnum.h \
1679    docRtfTags.h
1680
1681docRtfReadParaProperties.o: \
1682    docRtfReadParaProperties.c \
1683    docRtfConfig.h \
1684    ../include/appDebugon.h \
1685    ../include/appDebug.h \
1686    docRtfReaderImpl.h \
1687    ../docBuf/docBuf.h \
1688    ../bitmap/bitmap.h \
1689    ../appUtil/utilColor.h \
1690    ../appUtil/utilPalette.h \
1691    ../appUtil/utilColor.h \
1692    ../appUtil/utilMemoryBuffer.h \
1693    ../appUtil/geo2DInteger.h \
1694    ../utilPs/psPostScriptFontList.h \
1695    ../utilPs/psFontFamily.h \
1696    ../utilPs/psFontInfo.h \
1697    ../appUtil/utilIndexSet.h \
1698    ../appUtil/utilIndexMapping.h \
1699    ../docBase/docFramePropertiesAdmin.h \
1700    ../docBase/docFrameProperties.h \
1701    ../docBase/docPropVal.h \
1702    ../appUtil/utilIntegerValueNode.h \
1703    ../appUtil/utilNumberedPropertiesAdmin.h \
1704    ../appUtil/utilIntegerValueNode.h \
1705    ../appUtil/utilPagedList.h \
1706    ../appUtil/utilIndexSet.h \
1707    ../docBase/docStyleSheet.h \
1708    ../docBase/docStyle.h \
1709    ../appUtil/utilPropMask.h \
1710    ../docBase/docSectProperties.h \
1711    ../appUtil/utilDocumentGeometry.h \
1712    ../appUtil/utilPropMask.h \
1713    ../appUtil/geo2DInteger.h \
1714    ../docBase/docNotesProperties.h \
1715    ../docBase/docRowProperties.h \
1716    ../docBase/docCellProperties.h \
1717    ../docBase/docItemShading.h \
1718    ../docBase/docDocumentAttributeMap.h \
1719    ../docBase/docParaProperties.h \
1720    ../docBase/docParaNumber.h \
1721    ../utilPs/textAttribute.h \
1722    ../docBase/docDocumentProperties.h \
1723    ../docFont/utilDocFontList.h \
1724    ../docFont/utilDocFont.h \
1725    ../utilPs/psFontInfo.h \
1726    ../textEncoding/textOfficeCharset.h \
1727    ../docBase/docListAdmin.h \
1728    ../docBase/docListTable.h \
1729    ../docBase/docListOverrideTable.h \
1730    ../docBase/docDocumentFieldList.h \
1731    ../appUtil/utilPagedList.h \
1732    ../docBuf/docDrawingShapeList.h \
1733    ../docBase/docInsertedObjectList.h \
1734    ../docBase/docObject.h \
1735    ../docBase/docLayoutPosition.h \
1736    ../docBase/docPictureProperties.h \
1737    ../docBuf/docSelect.h \
1738    ../docBase/docLayoutPosition.h \
1739    ../docBase/docSelectionScope.h \
1740    ../docBase/docEditPosition.h \
1741    ../docBase/docEditRange.h \
1742    ../docBase/docEditPosition.h \
1743    ../docBuf/docTableRectangle.h \
1744    ../docBuf/docDocumentTree.h \
1745    ../docBase/docDocumentField.h \
1746    ../docBase/docFieldInstructions.h \
1747    ../docBase/docSelectionScope.h \
1748    ../docBase/docEditRange.h \
1749    ../docBase/docListNumberTree.h \
1750    ../docBase/docListTable.h \
1751    ../docBase/docNoteProperties.h \
1752    ../appUtil/sioGeneral.h \
1753    ../docBase/docTabStop.h \
1754    ../docBase/docTabStopList.h \
1755    ../docBase/docTabStop.h \
1756    ../docBase/docListOverride.h \
1757    ../docBase/docListOverrideLevel.h \
1758    ../docBase/docListLevel.h \
1759    ../docBase/docListDepth.h \
1760    ../docBase/docDocumentList.h \
1761    ../docBase/docBorderProperties.h \
1762    docRtfTextConverter.h \
1763    docRtfControlWord.h \
1764    ../docBuf/docTreeNode.h \
1765    ../docBuf/docParaNode.h \
1766    ../docBase/docParaProperties.h \
1767    ../docBuf/docCellNode.h \
1768    ../docBuf/docRowNode.h \
1769    ../docBase/docRowProperties.h \
1770    ../docBuf/docSectNode.h \
1771    ../docBase/docSectProperties.h \
1772    ../docBuf/docNodeTree.h
1773
1774docRtfReadRowProperties.o: \
1775    docRtfReadRowProperties.c \
1776    docRtfConfig.h \
1777    ../include/appDebugon.h \
1778    ../include/appDebug.h \
1779    docRtfReaderImpl.h \
1780    ../docBuf/docBuf.h \
1781    ../bitmap/bitmap.h \
1782    ../appUtil/utilColor.h \
1783    ../appUtil/utilPalette.h \
1784    ../appUtil/utilColor.h \
1785    ../appUtil/utilMemoryBuffer.h \
1786    ../appUtil/geo2DInteger.h \
1787    ../utilPs/psPostScriptFontList.h \
1788    ../utilPs/psFontFamily.h \
1789    ../utilPs/psFontInfo.h \
1790    ../appUtil/utilIndexSet.h \
1791    ../appUtil/utilIndexMapping.h \
1792    ../docBase/docFramePropertiesAdmin.h \
1793    ../docBase/docFrameProperties.h \
1794    ../docBase/docPropVal.h \
1795    ../appUtil/utilIntegerValueNode.h \
1796    ../appUtil/utilNumberedPropertiesAdmin.h \
1797    ../appUtil/utilIntegerValueNode.h \
1798    ../appUtil/utilPagedList.h \
1799    ../appUtil/utilIndexSet.h \
1800    ../docBase/docStyleSheet.h \
1801    ../docBase/docStyle.h \
1802    ../appUtil/utilPropMask.h \
1803    ../docBase/docSectProperties.h \
1804    ../appUtil/utilDocumentGeometry.h \
1805    ../appUtil/utilPropMask.h \
1806    ../appUtil/geo2DInteger.h \
1807    ../docBase/docNotesProperties.h \
1808    ../docBase/docRowProperties.h \
1809    ../docBase/docCellProperties.h \
1810    ../docBase/docItemShading.h \
1811    ../docBase/docDocumentAttributeMap.h \
1812    ../docBase/docParaProperties.h \
1813    ../docBase/docParaNumber.h \
1814    ../utilPs/textAttribute.h \
1815    ../docBase/docDocumentProperties.h \
1816    ../docFont/utilDocFontList.h \
1817    ../docFont/utilDocFont.h \
1818    ../utilPs/psFontInfo.h \
1819    ../textEncoding/textOfficeCharset.h \
1820    ../docBase/docListAdmin.h \
1821    ../docBase/docListTable.h \
1822    ../docBase/docListOverrideTable.h \
1823    ../docBase/docDocumentFieldList.h \
1824    ../appUtil/utilPagedList.h \
1825    ../docBuf/docDrawingShapeList.h \
1826    ../docBase/docInsertedObjectList.h \
1827    ../docBase/docObject.h \
1828    ../docBase/docLayoutPosition.h \
1829    ../docBase/docPictureProperties.h \
1830    ../docBuf/docSelect.h \
1831    ../docBase/docLayoutPosition.h \
1832    ../docBase/docSelectionScope.h \
1833    ../docBase/docEditPosition.h \
1834    ../docBase/docEditRange.h \
1835    ../docBase/docEditPosition.h \
1836    ../docBuf/docTableRectangle.h \
1837    ../docBuf/docDocumentTree.h \
1838    ../docBase/docDocumentField.h \
1839    ../docBase/docFieldInstructions.h \
1840    ../docBase/docSelectionScope.h \
1841    ../docBase/docEditRange.h \
1842    ../docBase/docListNumberTree.h \
1843    ../docBase/docListTable.h \
1844    ../docBase/docNoteProperties.h \
1845    ../appUtil/sioGeneral.h \
1846    ../docBase/docTabStop.h \
1847    ../docBase/docTabStopList.h \
1848    ../docBase/docTabStop.h \
1849    ../docBase/docListOverride.h \
1850    ../docBase/docListOverrideLevel.h \
1851    ../docBase/docListLevel.h \
1852    ../docBase/docListDepth.h \
1853    ../docBase/docDocumentList.h \
1854    ../docBase/docBorderProperties.h \
1855    docRtfTextConverter.h \
1856    docRtfControlWord.h
1857
1858docRtfReadRtf.o: \
1859    docRtfReadRtf.c \
1860    docRtfConfig.h \
1861    ../include/charnames.h \
1862    ../include/appDebugon.h \
1863    ../include/appDebug.h \
1864    ../textEncoding/textOfficeCharset.h \
1865    ../appUtil/utilIndexMapping.h \
1866    ../appUtil/utilIndexSet.h \
1867    docRtfReaderImpl.h \
1868    ../docBuf/docBuf.h \
1869    ../bitmap/bitmap.h \
1870    ../appUtil/utilColor.h \
1871    ../appUtil/utilPalette.h \
1872    ../appUtil/utilColor.h \
1873    ../appUtil/utilMemoryBuffer.h \
1874    ../appUtil/geo2DInteger.h \
1875    ../utilPs/psPostScriptFontList.h \
1876    ../utilPs/psFontFamily.h \
1877    ../utilPs/psFontInfo.h \
1878    ../docBase/docFramePropertiesAdmin.h \
1879    ../docBase/docFrameProperties.h \
1880    ../docBase/docPropVal.h \
1881    ../appUtil/utilIntegerValueNode.h \
1882    ../appUtil/utilNumberedPropertiesAdmin.h \
1883    ../appUtil/utilIntegerValueNode.h \
1884    ../appUtil/utilPagedList.h \
1885    ../appUtil/utilIndexSet.h \
1886    ../docBase/docStyleSheet.h \
1887    ../docBase/docStyle.h \
1888    ../appUtil/utilPropMask.h \
1889    ../docBase/docSectProperties.h \
1890    ../appUtil/utilDocumentGeometry.h \
1891    ../appUtil/utilPropMask.h \
1892    ../appUtil/geo2DInteger.h \
1893    ../docBase/docNotesProperties.h \
1894    ../docBase/docRowProperties.h \
1895    ../docBase/docCellProperties.h \
1896    ../docBase/docItemShading.h \
1897    ../docBase/docDocumentAttributeMap.h \
1898    ../docBase/docParaProperties.h \
1899    ../docBase/docParaNumber.h \
1900    ../utilPs/textAttribute.h \
1901    ../docBase/docDocumentProperties.h \
1902    ../docFont/utilDocFontList.h \
1903    ../docFont/utilDocFont.h \
1904    ../utilPs/psFontInfo.h \
1905    ../docBase/docListAdmin.h \
1906    ../docBase/docListTable.h \
1907    ../docBase/docListOverrideTable.h \
1908    ../docBase/docDocumentFieldList.h \
1909    ../appUtil/utilPagedList.h \
1910    ../docBuf/docDrawingShapeList.h \
1911    ../docBase/docInsertedObjectList.h \
1912    ../docBase/docObject.h \
1913    ../docBase/docLayoutPosition.h \
1914    ../docBase/docPictureProperties.h \
1915    ../docBuf/docSelect.h \
1916    ../docBase/docLayoutPosition.h \
1917    ../docBase/docSelectionScope.h \
1918    ../docBase/docEditPosition.h \
1919    ../docBase/docEditRange.h \
1920    ../docBase/docEditPosition.h \
1921    ../docBuf/docTableRectangle.h \
1922    ../docBuf/docDocumentTree.h \
1923    ../docBase/docDocumentField.h \
1924    ../docBase/docFieldInstructions.h \
1925    ../docBase/docSelectionScope.h \
1926    ../docBase/docEditRange.h \
1927    ../docBase/docListNumberTree.h \
1928    ../docBase/docListTable.h \
1929    ../docBase/docNoteProperties.h \
1930    ../appUtil/sioGeneral.h \
1931    ../docBase/docTabStop.h \
1932    ../docBase/docTabStopList.h \
1933    ../docBase/docTabStop.h \
1934    ../docBase/docListOverride.h \
1935    ../docBase/docListOverrideLevel.h \
1936    ../docBase/docListLevel.h \
1937    ../docBase/docListDepth.h \
1938    ../docBase/docDocumentList.h \
1939    ../docBase/docBorderProperties.h \
1940    docRtfTextConverter.h \
1941    docRtfControlWord.h \
1942    docRtfTags.h \
1943    docRtfFlags.h
1944
1945docRtfReadSectProperties.o: \
1946    docRtfReadSectProperties.c \
1947    docRtfConfig.h \
1948    ../include/appDebugon.h \
1949    ../include/appDebug.h \
1950    docRtfReaderImpl.h \
1951    ../docBuf/docBuf.h \
1952    ../bitmap/bitmap.h \
1953    ../appUtil/utilColor.h \
1954    ../appUtil/utilPalette.h \
1955    ../appUtil/utilColor.h \
1956    ../appUtil/utilMemoryBuffer.h \
1957    ../appUtil/geo2DInteger.h \
1958    ../utilPs/psPostScriptFontList.h \
1959    ../utilPs/psFontFamily.h \
1960    ../utilPs/psFontInfo.h \
1961    ../appUtil/utilIndexSet.h \
1962    ../appUtil/utilIndexMapping.h \
1963    ../docBase/docFramePropertiesAdmin.h \
1964    ../docBase/docFrameProperties.h \
1965    ../docBase/docPropVal.h \
1966    ../appUtil/utilIntegerValueNode.h \
1967    ../appUtil/utilNumberedPropertiesAdmin.h \
1968    ../appUtil/utilIntegerValueNode.h \
1969    ../appUtil/utilPagedList.h \
1970    ../appUtil/utilIndexSet.h \
1971    ../docBase/docStyleSheet.h \
1972    ../docBase/docStyle.h \
1973    ../appUtil/utilPropMask.h \
1974    ../docBase/docSectProperties.h \
1975    ../appUtil/utilDocumentGeometry.h \
1976    ../appUtil/utilPropMask.h \
1977    ../appUtil/geo2DInteger.h \
1978    ../docBase/docNotesProperties.h \
1979    ../docBase/docRowProperties.h \
1980    ../docBase/docCellProperties.h \
1981    ../docBase/docItemShading.h \
1982    ../docBase/docDocumentAttributeMap.h \
1983    ../docBase/docParaProperties.h \
1984    ../docBase/docParaNumber.h \
1985    ../utilPs/textAttribute.h \
1986    ../docBase/docDocumentProperties.h \
1987    ../docFont/utilDocFontList.h \
1988    ../docFont/utilDocFont.h \
1989    ../utilPs/psFontInfo.h \
1990    ../textEncoding/textOfficeCharset.h \
1991    ../docBase/docListAdmin.h \
1992    ../docBase/docListTable.h \
1993    ../docBase/docListOverrideTable.h \
1994    ../docBase/docDocumentFieldList.h \
1995    ../appUtil/utilPagedList.h \
1996    ../docBuf/docDrawingShapeList.h \
1997    ../docBase/docInsertedObjectList.h \
1998    ../docBase/docObject.h \
1999    ../docBase/docLayoutPosition.h \
2000    ../docBase/docPictureProperties.h \
2001    ../docBuf/docSelect.h \
2002    ../docBase/docLayoutPosition.h \
2003    ../docBase/docSelectionScope.h \
2004    ../docBase/docEditPosition.h \
2005    ../docBase/docEditRange.h \
2006    ../docBase/docEditPosition.h \
2007    ../docBuf/docTableRectangle.h \
2008    ../docBuf/docDocumentTree.h \
2009    ../docBase/docDocumentField.h \
2010    ../docBase/docFieldInstructions.h \
2011    ../docBase/docSelectionScope.h \
2012    ../docBase/docEditRange.h \
2013    ../docBase/docListNumberTree.h \
2014    ../docBase/docListTable.h \
2015    ../docBase/docNoteProperties.h \
2016    ../appUtil/sioGeneral.h \
2017    ../docBase/docTabStop.h \
2018    ../docBase/docTabStopList.h \
2019    ../docBase/docTabStop.h \
2020    ../docBase/docListOverride.h \
2021    ../docBase/docListOverrideLevel.h \
2022    ../docBase/docListLevel.h \
2023    ../docBase/docListDepth.h \
2024    ../docBase/docDocumentList.h \
2025    ../docBase/docBorderProperties.h \
2026    docRtfTextConverter.h \
2027    docRtfControlWord.h \
2028    ../docBase/docTreeType.h \
2029    ../docBuf/docTreeNode.h \
2030    ../docBuf/docParaNode.h \
2031    ../docBase/docParaProperties.h \
2032    ../docBuf/docCellNode.h \
2033    ../docBuf/docRowNode.h \
2034    ../docBase/docRowProperties.h \
2035    ../docBuf/docSectNode.h \
2036    ../docBase/docSectProperties.h
2037
2038docRtfReadShape.o: \
2039    docRtfReadShape.c \
2040    docRtfConfig.h \
2041    ../include/appDebugon.h \
2042    ../include/appDebug.h \
2043    docRtfReaderImpl.h \
2044    ../docBuf/docBuf.h \
2045    ../bitmap/bitmap.h \
2046    ../appUtil/utilColor.h \
2047    ../appUtil/utilPalette.h \
2048    ../appUtil/utilColor.h \
2049    ../appUtil/utilMemoryBuffer.h \
2050    ../appUtil/geo2DInteger.h \
2051    ../utilPs/psPostScriptFontList.h \
2052    ../utilPs/psFontFamily.h \
2053    ../utilPs/psFontInfo.h \
2054    ../appUtil/utilIndexSet.h \
2055    ../appUtil/utilIndexMapping.h \
2056    ../docBase/docFramePropertiesAdmin.h \
2057    ../docBase/docFrameProperties.h \
2058    ../docBase/docPropVal.h \
2059    ../appUtil/utilIntegerValueNode.h \
2060    ../appUtil/utilNumberedPropertiesAdmin.h \
2061    ../appUtil/utilIntegerValueNode.h \
2062    ../appUtil/utilPagedList.h \
2063    ../appUtil/utilIndexSet.h \
2064    ../docBase/docStyleSheet.h \
2065    ../docBase/docStyle.h \
2066    ../appUtil/utilPropMask.h \
2067    ../docBase/docSectProperties.h \
2068    ../appUtil/utilDocumentGeometry.h \
2069    ../appUtil/utilPropMask.h \
2070    ../appUtil/geo2DInteger.h \
2071    ../docBase/docNotesProperties.h \
2072    ../docBase/docRowProperties.h \
2073    ../docBase/docCellProperties.h \
2074    ../docBase/docItemShading.h \
2075    ../docBase/docDocumentAttributeMap.h \
2076    ../docBase/docParaProperties.h \
2077    ../docBase/docParaNumber.h \
2078    ../utilPs/textAttribute.h \
2079    ../docBase/docDocumentProperties.h \
2080    ../docFont/utilDocFontList.h \
2081    ../docFont/utilDocFont.h \
2082    ../utilPs/psFontInfo.h \
2083    ../textEncoding/textOfficeCharset.h \
2084    ../docBase/docListAdmin.h \
2085    ../docBase/docListTable.h \
2086    ../docBase/docListOverrideTable.h \
2087    ../docBase/docDocumentFieldList.h \
2088    ../appUtil/utilPagedList.h \
2089    ../docBuf/docDrawingShapeList.h \
2090    ../docBase/docInsertedObjectList.h \
2091    ../docBase/docObject.h \
2092    ../docBase/docLayoutPosition.h \
2093    ../docBase/docPictureProperties.h \
2094    ../docBuf/docSelect.h \
2095    ../docBase/docLayoutPosition.h \
2096    ../docBase/docSelectionScope.h \
2097    ../docBase/docEditPosition.h \
2098    ../docBase/docEditRange.h \
2099    ../docBase/docEditPosition.h \
2100    ../docBuf/docTableRectangle.h \
2101    ../docBuf/docDocumentTree.h \
2102    ../docBase/docDocumentField.h \
2103    ../docBase/docFieldInstructions.h \
2104    ../docBase/docSelectionScope.h \
2105    ../docBase/docEditRange.h \
2106    ../docBase/docListNumberTree.h \
2107    ../docBase/docListTable.h \
2108    ../docBase/docNoteProperties.h \
2109    ../appUtil/sioGeneral.h \
2110    ../docBase/docTabStop.h \
2111    ../docBase/docTabStopList.h \
2112    ../docBase/docTabStop.h \
2113    ../docBase/docListOverride.h \
2114    ../docBase/docListOverrideLevel.h \
2115    ../docBase/docListLevel.h \
2116    ../docBase/docListDepth.h \
2117    ../docBase/docDocumentList.h \
2118    ../docBase/docBorderProperties.h \
2119    docRtfTextConverter.h \
2120    docRtfControlWord.h \
2121    docRtfTags.h \
2122    docRtfShpTab.h \
2123    docRtfReaderImpl.h \
2124    ../docBuf/docShape.h \
2125    ../appUtil/geoAffineTransform.h \
2126    ../docBase/docShapeProperties.h \
2127    ../docBase/docPictureProperties.h \
2128    ../docBase/docShapeDrawing.h \
2129    ../docBase/docShapeProp.h \
2130    ../docBase/docObjectProperties.h \
2131    ../docBase/docTreeType.h \
2132    ../docBuf/docNodeTree.h \
2133    ../docBuf/docParaParticules.h \
2134    ../docBuf/docBuf.h \
2135    ../docBase/docTextParticule.h \
2136    ../docBase/docTextLine.h \
2137    ../docBuf/docTreeNode.h \
2138    ../docBuf/docParaNode.h \
2139    ../docBase/docParaProperties.h \
2140    ../docBuf/docCellNode.h \
2141    ../docBuf/docRowNode.h \
2142    ../docBase/docRowProperties.h \
2143    ../docBuf/docSectNode.h \
2144    ../docBase/docSectProperties.h
2145
2146docRtfReadText.o: \
2147    docRtfReadText.c \
2148    docRtfConfig.h \
2149    ../include/appDebugon.h \
2150    ../include/appDebug.h \
2151    ../textEncoding/uniUtf8.h \
2152    docRtfReaderImpl.h \
2153    ../docBuf/docBuf.h \
2154    ../bitmap/bitmap.h \
2155    ../appUtil/utilColor.h \
2156    ../appUtil/utilPalette.h \
2157    ../appUtil/utilColor.h \
2158    ../appUtil/utilMemoryBuffer.h \
2159    ../appUtil/geo2DInteger.h \
2160    ../utilPs/psPostScriptFontList.h \
2161    ../utilPs/psFontFamily.h \
2162    ../utilPs/psFontInfo.h \
2163    ../appUtil/utilIndexSet.h \
2164    ../appUtil/utilIndexMapping.h \
2165    ../docBase/docFramePropertiesAdmin.h \
2166    ../docBase/docFrameProperties.h \
2167    ../docBase/docPropVal.h \
2168    ../appUtil/utilIntegerValueNode.h \
2169    ../appUtil/utilNumberedPropertiesAdmin.h \
2170    ../appUtil/utilIntegerValueNode.h \
2171    ../appUtil/utilPagedList.h \
2172    ../appUtil/utilIndexSet.h \
2173    ../docBase/docStyleSheet.h \
2174    ../docBase/docStyle.h \
2175    ../appUtil/utilPropMask.h \
2176    ../docBase/docSectProperties.h \
2177    ../appUtil/utilDocumentGeometry.h \
2178    ../appUtil/utilPropMask.h \
2179    ../appUtil/geo2DInteger.h \
2180    ../docBase/docNotesProperties.h \
2181    ../docBase/docRowProperties.h \
2182    ../docBase/docCellProperties.h \
2183    ../docBase/docItemShading.h \
2184    ../docBase/docDocumentAttributeMap.h \
2185    ../docBase/docParaProperties.h \
2186    ../docBase/docParaNumber.h \
2187    ../utilPs/textAttribute.h \
2188    ../docBase/docDocumentProperties.h \
2189    ../docFont/utilDocFontList.h \
2190    ../docFont/utilDocFont.h \
2191    ../utilPs/psFontInfo.h \
2192    ../textEncoding/textOfficeCharset.h \
2193    ../docBase/docListAdmin.h \
2194    ../docBase/docListTable.h \
2195    ../docBase/docListOverrideTable.h \
2196    ../docBase/docDocumentFieldList.h \
2197    ../appUtil/utilPagedList.h \
2198    ../docBuf/docDrawingShapeList.h \
2199    ../docBase/docInsertedObjectList.h \
2200    ../docBase/docObject.h \
2201    ../docBase/docLayoutPosition.h \
2202    ../docBase/docPictureProperties.h \
2203    ../docBuf/docSelect.h \
2204    ../docBase/docLayoutPosition.h \
2205    ../docBase/docSelectionScope.h \
2206    ../docBase/docEditPosition.h \
2207    ../docBase/docEditRange.h \
2208    ../docBase/docEditPosition.h \
2209    ../docBuf/docTableRectangle.h \
2210    ../docBuf/docDocumentTree.h \
2211    ../docBase/docDocumentField.h \
2212    ../docBase/docFieldInstructions.h \
2213    ../docBase/docSelectionScope.h \
2214    ../docBase/docEditRange.h \
2215    ../docBase/docListNumberTree.h \
2216    ../docBase/docListTable.h \
2217    ../docBase/docNoteProperties.h \
2218    ../appUtil/sioGeneral.h \
2219    ../docBase/docTabStop.h \
2220    ../docBase/docTabStopList.h \
2221    ../docBase/docTabStop.h \
2222    ../docBase/docListOverride.h \
2223    ../docBase/docListOverrideLevel.h \
2224    ../docBase/docListLevel.h \
2225    ../docBase/docListDepth.h \
2226    ../docBase/docDocumentList.h \
2227    ../docBase/docBorderProperties.h \
2228    docRtfTextConverter.h \
2229    docRtfControlWord.h \
2230    ../docBuf/docParaString.h \
2231    ../docBuf/docBuf.h \
2232    ../docBuf/docTreeNode.h \
2233    ../docBuf/docParaNode.h \
2234    ../docBase/docParaProperties.h \
2235    ../docBuf/docCellNode.h \
2236    ../docBuf/docRowNode.h \
2237    ../docBase/docRowProperties.h \
2238    ../docBuf/docSectNode.h \
2239    ../docBase/docSectProperties.h \
2240    ../textEncoding/textConverter.h \
2241    ../textEncoding/textConverterImpl.h \
2242    ../textEncoding/textConverter.h \
2243    ../docBuf/docParaParticules.h \
2244    ../docBase/docTextParticule.h \
2245    ../docBase/docTextLine.h
2246
2247docRtfReaderImpl.o: \
2248    docRtfReaderImpl.c \
2249    docRtfConfig.h \
2250    ../include/appDebugon.h \
2251    ../include/appDebug.h \
2252    ../appUtil/appUnit.h \
2253    ../textEncoding/textOfficeCharset.h \
2254    ../appUtil/utilIndexMapping.h \
2255    ../appUtil/utilIndexSet.h \
2256    ../textEncoding/textConverter.h \
2257    ../textEncoding/textConverterImpl.h \
2258    ../textEncoding/textConverter.h \
2259    ../docBuf/docShape.h \
2260    ../appUtil/utilColor.h \
2261    ../appUtil/geo2DInteger.h \
2262    ../appUtil/utilMemoryBuffer.h \
2263    ../appUtil/geoAffineTransform.h \
2264    ../docBase/docShapeProperties.h \
2265    ../docBase/docPictureProperties.h \
2266    ../appUtil/utilPropMask.h \
2267    ../docBuf/docDocumentTree.h \
2268    ../docBase/docDocumentField.h \
2269    ../docBase/docFieldInstructions.h \
2270    ../docBase/docSelectionScope.h \
2271    ../docBase/docEditRange.h \
2272    ../docBase/docEditPosition.h \
2273    ../docBase/docListNumberTree.h \
2274    ../docBase/docShapeDrawing.h \
2275    ../bitmap/bitmap.h \
2276    ../appUtil/utilPalette.h \
2277    ../appUtil/utilColor.h \
2278    docRtfReaderImpl.h \
2279    ../docBuf/docBuf.h \
2280    ../utilPs/psPostScriptFontList.h \
2281    ../utilPs/psFontFamily.h \
2282    ../utilPs/psFontInfo.h \
2283    ../docBase/docFramePropertiesAdmin.h \
2284    ../docBase/docFrameProperties.h \
2285    ../docBase/docPropVal.h \
2286    ../appUtil/utilIntegerValueNode.h \
2287    ../appUtil/utilNumberedPropertiesAdmin.h \
2288    ../appUtil/utilIntegerValueNode.h \
2289    ../appUtil/utilPagedList.h \
2290    ../appUtil/utilIndexSet.h \
2291    ../docBase/docStyleSheet.h \
2292    ../docBase/docStyle.h \
2293    ../docBase/docSectProperties.h \
2294    ../appUtil/utilDocumentGeometry.h \
2295    ../appUtil/utilPropMask.h \
2296    ../appUtil/geo2DInteger.h \
2297    ../docBase/docNotesProperties.h \
2298    ../docBase/docRowProperties.h \
2299    ../docBase/docCellProperties.h \
2300    ../docBase/docItemShading.h \
2301    ../docBase/docDocumentAttributeMap.h \
2302    ../docBase/docParaProperties.h \
2303    ../docBase/docParaNumber.h \
2304    ../utilPs/textAttribute.h \
2305    ../docBase/docDocumentProperties.h \
2306    ../docFont/utilDocFontList.h \
2307    ../docFont/utilDocFont.h \
2308    ../utilPs/psFontInfo.h \
2309    ../docBase/docListAdmin.h \
2310    ../docBase/docListTable.h \
2311    ../docBase/docListOverrideTable.h \
2312    ../docBase/docDocumentFieldList.h \
2313    ../appUtil/utilPagedList.h \
2314    ../docBuf/docDrawingShapeList.h \
2315    ../docBase/docInsertedObjectList.h \
2316    ../docBase/docObject.h \
2317    ../docBase/docLayoutPosition.h \
2318    ../docBase/docPictureProperties.h \
2319    ../docBuf/docSelect.h \
2320    ../docBase/docLayoutPosition.h \
2321    ../docBase/docSelectionScope.h \
2322    ../docBase/docEditPosition.h \
2323    ../docBase/docEditRange.h \
2324    ../docBuf/docTableRectangle.h \
2325    ../docBase/docListTable.h \
2326    ../docBase/docNoteProperties.h \
2327    ../appUtil/sioGeneral.h \
2328    ../docBase/docTabStop.h \
2329    ../docBase/docTabStopList.h \
2330    ../docBase/docTabStop.h \
2331    ../docBase/docListOverride.h \
2332    ../docBase/docListOverrideLevel.h \
2333    ../docBase/docListLevel.h \
2334    ../docBase/docListDepth.h \
2335    ../docBase/docDocumentList.h \
2336    ../docBase/docBorderProperties.h \
2337    docRtfTextConverter.h \
2338    docRtfControlWord.h
2339
2340docRtfSaveCellProperties.o: \
2341    docRtfSaveCellProperties.c \
2342    docRtfConfig.h \
2343    ../include/appDebugon.h \
2344    ../include/appDebug.h \
2345    docRtfWriterImpl.h \
2346    ../docBuf/docBuf.h \
2347    ../bitmap/bitmap.h \
2348    ../appUtil/utilColor.h \
2349    ../appUtil/utilPalette.h \
2350    ../appUtil/utilColor.h \
2351    ../appUtil/utilMemoryBuffer.h \
2352    ../appUtil/geo2DInteger.h \
2353    ../utilPs/psPostScriptFontList.h \
2354    ../utilPs/psFontFamily.h \
2355    ../utilPs/psFontInfo.h \
2356    ../appUtil/utilIndexSet.h \
2357    ../appUtil/utilIndexMapping.h \
2358    ../docBase/docFramePropertiesAdmin.h \
2359    ../docBase/docFrameProperties.h \
2360    ../docBase/docPropVal.h \
2361    ../appUtil/utilIntegerValueNode.h \
2362    ../appUtil/utilNumberedPropertiesAdmin.h \
2363    ../appUtil/utilIntegerValueNode.h \
2364    ../appUtil/utilPagedList.h \
2365    ../appUtil/utilIndexSet.h \
2366    ../docBase/docStyleSheet.h \
2367    ../docBase/docStyle.h \
2368    ../appUtil/utilPropMask.h \
2369    ../docBase/docSectProperties.h \
2370    ../appUtil/utilDocumentGeometry.h \
2371    ../appUtil/utilPropMask.h \
2372    ../appUtil/geo2DInteger.h \
2373    ../docBase/docNotesProperties.h \
2374    ../docBase/docRowProperties.h \
2375    ../docBase/docCellProperties.h \
2376    ../docBase/docItemShading.h \
2377    ../docBase/docDocumentAttributeMap.h \
2378    ../docBase/docParaProperties.h \
2379    ../docBase/docParaNumber.h \
2380    ../utilPs/textAttribute.h \
2381    ../docBase/docDocumentProperties.h \
2382    ../docFont/utilDocFontList.h \
2383    ../docFont/utilDocFont.h \
2384    ../utilPs/psFontInfo.h \
2385    ../textEncoding/textOfficeCharset.h \
2386    ../docBase/docListAdmin.h \
2387    ../docBase/docListTable.h \
2388    ../docBase/docListOverrideTable.h \
2389    ../docBase/docDocumentFieldList.h \
2390    ../appUtil/utilPagedList.h \
2391    ../docBuf/docDrawingShapeList.h \
2392    ../docBase/docInsertedObjectList.h \
2393    ../docBase/docObject.h \
2394    ../docBase/docLayoutPosition.h \
2395    ../docBase/docPictureProperties.h \
2396    ../docBuf/docSelect.h \
2397    ../docBase/docLayoutPosition.h \
2398    ../docBase/docSelectionScope.h \
2399    ../docBase/docEditPosition.h \
2400    ../docBase/docEditRange.h \
2401    ../docBase/docEditPosition.h \
2402    ../docBuf/docTableRectangle.h \
2403    ../docBuf/docDocumentTree.h \
2404    ../docBase/docDocumentField.h \
2405    ../docBase/docFieldInstructions.h \
2406    ../docBase/docSelectionScope.h \
2407    ../docBase/docEditRange.h \
2408    ../docBase/docListNumberTree.h \
2409    ../docBase/docListTable.h \
2410    ../appUtil/sioGeneral.h \
2411    docRtfWriter.h \
2412    docRtfTags.h
2413
2414docRtfSaveDocument.o: \
2415    docRtfSaveDocument.c \
2416    docRtfConfig.h \
2417    ../include/appDebugon.h \
2418    ../include/appDebug.h \
2419    docRtfReadWrite.h \
2420    ../docBuf/docBuf.h \
2421    ../bitmap/bitmap.h \
2422    ../appUtil/utilColor.h \
2423    ../appUtil/utilPalette.h \
2424    ../appUtil/utilColor.h \
2425    ../appUtil/utilMemoryBuffer.h \
2426    ../appUtil/geo2DInteger.h \
2427    ../utilPs/psPostScriptFontList.h \
2428    ../utilPs/psFontFamily.h \
2429    ../utilPs/psFontInfo.h \
2430    ../appUtil/utilIndexSet.h \
2431    ../appUtil/utilIndexMapping.h \
2432    ../docBase/docFramePropertiesAdmin.h \
2433    ../docBase/docFrameProperties.h \
2434    ../docBase/docPropVal.h \
2435    ../appUtil/utilIntegerValueNode.h \
2436    ../appUtil/utilNumberedPropertiesAdmin.h \
2437    ../appUtil/utilIntegerValueNode.h \
2438    ../appUtil/utilPagedList.h \
2439    ../appUtil/utilIndexSet.h \
2440    ../docBase/docStyleSheet.h \
2441    ../docBase/docStyle.h \
2442    ../appUtil/utilPropMask.h \
2443    ../docBase/docSectProperties.h \
2444    ../appUtil/utilDocumentGeometry.h \
2445    ../appUtil/utilPropMask.h \
2446    ../appUtil/geo2DInteger.h \
2447    ../docBase/docNotesProperties.h \
2448    ../docBase/docRowProperties.h \
2449    ../docBase/docCellProperties.h \
2450    ../docBase/docItemShading.h \
2451    ../docBase/docDocumentAttributeMap.h \
2452    ../docBase/docParaProperties.h \
2453    ../docBase/docParaNumber.h \
2454    ../utilPs/textAttribute.h \
2455    ../docBase/docDocumentProperties.h \
2456    ../docFont/utilDocFontList.h \
2457    ../docFont/utilDocFont.h \
2458    ../utilPs/psFontInfo.h \
2459    ../textEncoding/textOfficeCharset.h \
2460    ../docBase/docListAdmin.h \
2461    ../docBase/docListTable.h \
2462    ../docBase/docListOverrideTable.h \
2463    ../docBase/docDocumentFieldList.h \
2464    ../appUtil/utilPagedList.h \
2465    ../docBuf/docDrawingShapeList.h \
2466    ../docBase/docInsertedObjectList.h \
2467    ../docBase/docObject.h \
2468    ../docBase/docLayoutPosition.h \
2469    ../docBase/docPictureProperties.h \
2470    ../docBuf/docSelect.h \
2471    ../docBase/docLayoutPosition.h \
2472    ../docBase/docSelectionScope.h \
2473    ../docBase/docEditPosition.h \
2474    ../docBase/docEditRange.h \
2475    ../docBase/docEditPosition.h \
2476    ../docBuf/docTableRectangle.h \
2477    ../docBuf/docDocumentTree.h \
2478    ../docBase/docDocumentField.h \
2479    ../docBase/docFieldInstructions.h \
2480    ../docBase/docSelectionScope.h \
2481    ../docBase/docEditRange.h \
2482    ../docBase/docListNumberTree.h \
2483    ../docBase/docListTable.h \
2484    ../appUtil/sioGeneral.h \
2485    docRtfWriterImpl.h \
2486    docRtfWriter.h \
2487    docRtfTags.h \
2488    ../docBuf/docNotes.h \
2489    ../docBase/docTreeType.h
2490
2491docRtfSaveDocumentProperties.o: \
2492    docRtfSaveDocumentProperties.c \
2493    docRtfConfig.h \
2494    ../include/appDebugon.h \
2495    ../include/appDebug.h \
2496    ../textEncoding/textOfficeCharset.h \
2497    ../appUtil/utilIndexMapping.h \
2498    ../appUtil/utilIndexSet.h \
2499    docRtfWriterImpl.h \
2500    ../docBuf/docBuf.h \
2501    ../bitmap/bitmap.h \
2502    ../appUtil/utilColor.h \
2503    ../appUtil/utilPalette.h \
2504    ../appUtil/utilColor.h \
2505    ../appUtil/utilMemoryBuffer.h \
2506    ../appUtil/geo2DInteger.h \
2507    ../utilPs/psPostScriptFontList.h \
2508    ../utilPs/psFontFamily.h \
2509    ../utilPs/psFontInfo.h \
2510    ../docBase/docFramePropertiesAdmin.h \
2511    ../docBase/docFrameProperties.h \
2512    ../docBase/docPropVal.h \
2513    ../appUtil/utilIntegerValueNode.h \
2514    ../appUtil/utilNumberedPropertiesAdmin.h \
2515    ../appUtil/utilIntegerValueNode.h \
2516    ../appUtil/utilPagedList.h \
2517    ../appUtil/utilIndexSet.h \
2518    ../docBase/docStyleSheet.h \
2519    ../docBase/docStyle.h \
2520    ../appUtil/utilPropMask.h \
2521    ../docBase/docSectProperties.h \
2522    ../appUtil/utilDocumentGeometry.h \
2523    ../appUtil/utilPropMask.h \
2524    ../appUtil/geo2DInteger.h \
2525    ../docBase/docNotesProperties.h \
2526    ../docBase/docRowProperties.h \
2527    ../docBase/docCellProperties.h \
2528    ../docBase/docItemShading.h \
2529    ../docBase/docDocumentAttributeMap.h \
2530    ../docBase/docParaProperties.h \
2531    ../docBase/docParaNumber.h \
2532    ../utilPs/textAttribute.h \
2533    ../docBase/docDocumentProperties.h \
2534    ../docFont/utilDocFontList.h \
2535    ../docFont/utilDocFont.h \
2536    ../utilPs/psFontInfo.h \
2537    ../docBase/docListAdmin.h \
2538    ../docBase/docListTable.h \
2539    ../docBase/docListOverrideTable.h \
2540    ../docBase/docDocumentFieldList.h \
2541    ../appUtil/utilPagedList.h \
2542    ../docBuf/docDrawingShapeList.h \
2543    ../docBase/docInsertedObjectList.h \
2544    ../docBase/docObject.h \
2545    ../docBase/docLayoutPosition.h \
2546    ../docBase/docPictureProperties.h \
2547    ../docBuf/docSelect.h \
2548    ../docBase/docLayoutPosition.h \
2549    ../docBase/docSelectionScope.h \
2550    ../docBase/docEditPosition.h \
2551    ../docBase/docEditRange.h \
2552    ../docBase/docEditPosition.h \
2553    ../docBuf/docTableRectangle.h \
2554    ../docBuf/docDocumentTree.h \
2555    ../docBase/docDocumentField.h \
2556    ../docBase/docFieldInstructions.h \
2557    ../docBase/docSelectionScope.h \
2558    ../docBase/docEditRange.h \
2559    ../docBase/docListNumberTree.h \
2560    ../docBase/docListTable.h \
2561    ../appUtil/sioGeneral.h \
2562    docRtfWriter.h \
2563    docRtfTags.h
2564
2565docRtfSaveField.o: \
2566    docRtfSaveField.c \
2567    docRtfConfig.h \
2568    ../bitmap/bitmap.h \
2569    ../appUtil/utilColor.h \
2570    ../appUtil/utilPalette.h \
2571    ../appUtil/utilColor.h \
2572    ../appUtil/utilMemoryBuffer.h \
2573    ../appUtil/geo2DInteger.h \
2574    ../include/appDebugon.h \
2575    ../include/appDebug.h \
2576    docRtfFlags.h \
2577    docRtfTags.h \
2578    ../docBuf/docField.h \
2579    ../docBase/docDocumentField.h \
2580    ../docBase/docFieldInstructions.h \
2581    ../docBase/docSelectionScope.h \
2582    ../docBase/docEditRange.h \
2583    ../docBase/docEditPosition.h \
2584    ../docBase/docEditPosition.h \
2585    ../utilPs/textAttribute.h \
2586    ../appUtil/utilPropMask.h \
2587    ../docBase/docTreeType.h \
2588    ../docBuf/docTreeNode.h \
2589    ../docBuf/docParaNode.h \
2590    ../docBase/docParaProperties.h \
2591    ../docBase/docDocumentAttributeMap.h \
2592    ../docBase/docObject.h \
2593    ../docBase/docLayoutPosition.h \
2594    ../docBase/docPictureProperties.h \
2595    ../docBuf/docCellNode.h \
2596    ../docBuf/docRowNode.h \
2597    ../docBase/docLayoutPosition.h \
2598    ../docBase/docRowProperties.h \
2599    ../docBase/docCellProperties.h \
2600    ../docBase/docItemShading.h \
2601    ../docBuf/docSectNode.h \
2602    ../docBase/docSectProperties.h \
2603    ../appUtil/utilDocumentGeometry.h \
2604    ../appUtil/utilPropMask.h \
2605    ../appUtil/geo2DInteger.h \
2606    ../docBase/docNotesProperties.h \
2607    ../docBuf/docDocumentTree.h \
2608    ../docBase/docListNumberTree.h \
2609    ../docBuf/docNotes.h \
2610    docRtfWriterImpl.h \
2611    ../docBuf/docBuf.h \
2612    ../utilPs/psPostScriptFontList.h \
2613    ../utilPs/psFontFamily.h \
2614    ../utilPs/psFontInfo.h \
2615    ../appUtil/utilIndexSet.h \
2616    ../appUtil/utilIndexMapping.h \
2617    ../docBase/docFramePropertiesAdmin.h \
2618    ../docBase/docFrameProperties.h \
2619    ../docBase/docPropVal.h \
2620    ../appUtil/utilIntegerValueNode.h \
2621    ../appUtil/utilNumberedPropertiesAdmin.h \
2622    ../appUtil/utilIntegerValueNode.h \
2623    ../appUtil/utilPagedList.h \
2624    ../appUtil/utilIndexSet.h \
2625    ../docBase/docStyleSheet.h \
2626    ../docBase/docStyle.h \
2627    ../docBase/docSectProperties.h \
2628    ../docBase/docRowProperties.h \
2629    ../docBase/docParaProperties.h \
2630    ../docBase/docParaNumber.h \
2631    ../docBase/docDocumentProperties.h \
2632    ../docFont/utilDocFontList.h \
2633    ../docFont/utilDocFont.h \
2634    ../utilPs/psFontInfo.h \
2635    ../textEncoding/textOfficeCharset.h \
2636    ../docBase/docListAdmin.h \
2637    ../docBase/docListTable.h \
2638    ../docBase/docListOverrideTable.h \
2639    ../docBase/docDocumentFieldList.h \
2640    ../appUtil/utilPagedList.h \
2641    ../docBuf/docDrawingShapeList.h \
2642    ../docBase/docInsertedObjectList.h \
2643    ../docBuf/docSelect.h \
2644    ../docBase/docSelectionScope.h \
2645    ../docBase/docEditRange.h \
2646    ../docBuf/docTableRectangle.h \
2647    ../docBase/docListTable.h \
2648    ../appUtil/sioGeneral.h \
2649    docRtfWriter.h \
2650    ../docBase/docBookmarkField.h \
2651    ../docBase/docTextParticule.h \
2652    ../docBuf/docDocumentNote.h \
2653    ../docBase/docNoteProperties.h
2654
2655docRtfSaveFontTable.o: \
2656    docRtfSaveFontTable.c \
2657    docRtfConfig.h \
2658    ../include/appDebugon.h \
2659    ../include/appDebug.h \
2660    ../textEncoding/textOfficeCharset.h \
2661    ../appUtil/utilIndexMapping.h \
2662    ../appUtil/utilIndexSet.h \
2663    ../utilPs/psDocumentFontStyle.h \
2664    docRtfWriterImpl.h \
2665    ../docBuf/docBuf.h \
2666    ../bitmap/bitmap.h \
2667    ../appUtil/utilColor.h \
2668    ../appUtil/utilPalette.h \
2669    ../appUtil/utilColor.h \
2670    ../appUtil/utilMemoryBuffer.h \
2671    ../appUtil/geo2DInteger.h \
2672    ../utilPs/psPostScriptFontList.h \
2673    ../utilPs/psFontFamily.h \
2674    ../utilPs/psFontInfo.h \
2675    ../docBase/docFramePropertiesAdmin.h \
2676    ../docBase/docFrameProperties.h \
2677    ../docBase/docPropVal.h \
2678    ../appUtil/utilIntegerValueNode.h \
2679    ../appUtil/utilNumberedPropertiesAdmin.h \
2680    ../appUtil/utilIntegerValueNode.h \
2681    ../appUtil/utilPagedList.h \
2682    ../appUtil/utilIndexSet.h \
2683    ../docBase/docStyleSheet.h \
2684    ../docBase/docStyle.h \
2685    ../appUtil/utilPropMask.h \
2686    ../docBase/docSectProperties.h \
2687    ../appUtil/utilDocumentGeometry.h \
2688    ../appUtil/utilPropMask.h \
2689    ../appUtil/geo2DInteger.h \
2690    ../docBase/docNotesProperties.h \
2691    ../docBase/docRowProperties.h \
2692    ../docBase/docCellProperties.h \
2693    ../docBase/docItemShading.h \
2694    ../docBase/docDocumentAttributeMap.h \
2695    ../docBase/docParaProperties.h \
2696    ../docBase/docParaNumber.h \
2697    ../utilPs/textAttribute.h \
2698    ../docBase/docDocumentProperties.h \
2699    ../docFont/utilDocFontList.h \
2700    ../docFont/utilDocFont.h \
2701    ../utilPs/psFontInfo.h \
2702    ../docBase/docListAdmin.h \
2703    ../docBase/docListTable.h \
2704    ../docBase/docListOverrideTable.h \
2705    ../docBase/docDocumentFieldList.h \
2706    ../appUtil/utilPagedList.h \
2707    ../docBuf/docDrawingShapeList.h \
2708    ../docBase/docInsertedObjectList.h \
2709    ../docBase/docObject.h \
2710    ../docBase/docLayoutPosition.h \
2711    ../docBase/docPictureProperties.h \
2712    ../docBuf/docSelect.h \
2713    ../docBase/docLayoutPosition.h \
2714    ../docBase/docSelectionScope.h \
2715    ../docBase/docEditPosition.h \
2716    ../docBase/docEditRange.h \
2717    ../docBase/docEditPosition.h \
2718    ../docBuf/docTableRectangle.h \
2719    ../docBuf/docDocumentTree.h \
2720    ../docBase/docDocumentField.h \
2721    ../docBase/docFieldInstructions.h \
2722    ../docBase/docSelectionScope.h \
2723    ../docBase/docEditRange.h \
2724    ../docBase/docListNumberTree.h \
2725    ../docBase/docListTable.h \
2726    ../appUtil/sioGeneral.h \
2727    docRtfWriter.h \
2728    docRtfTextConverter.h \
2729    docRtfFlags.h
2730
2731docRtfSaveNotesProperties.o: \
2732    docRtfSaveNotesProperties.c \
2733    docRtfConfig.h \
2734    ../include/appDebugon.h \
2735    ../include/appDebug.h \
2736    docRtfWriterImpl.h \
2737    ../docBuf/docBuf.h \
2738    ../bitmap/bitmap.h \
2739    ../appUtil/utilColor.h \
2740    ../appUtil/utilPalette.h \
2741    ../appUtil/utilColor.h \
2742    ../appUtil/utilMemoryBuffer.h \
2743    ../appUtil/geo2DInteger.h \
2744    ../utilPs/psPostScriptFontList.h \
2745    ../utilPs/psFontFamily.h \
2746    ../utilPs/psFontInfo.h \
2747    ../appUtil/utilIndexSet.h \
2748    ../appUtil/utilIndexMapping.h \
2749    ../docBase/docFramePropertiesAdmin.h \
2750    ../docBase/docFrameProperties.h \
2751    ../docBase/docPropVal.h \
2752    ../appUtil/utilIntegerValueNode.h \
2753    ../appUtil/utilNumberedPropertiesAdmin.h \
2754    ../appUtil/utilIntegerValueNode.h \
2755    ../appUtil/utilPagedList.h \
2756    ../appUtil/utilIndexSet.h \
2757    ../docBase/docStyleSheet.h \
2758    ../docBase/docStyle.h \
2759    ../appUtil/utilPropMask.h \
2760    ../docBase/docSectProperties.h \
2761    ../appUtil/utilDocumentGeometry.h \
2762    ../appUtil/utilPropMask.h \
2763    ../appUtil/geo2DInteger.h \
2764    ../docBase/docNotesProperties.h \
2765    ../docBase/docRowProperties.h \
2766    ../docBase/docCellProperties.h \
2767    ../docBase/docItemShading.h \
2768    ../docBase/docDocumentAttributeMap.h \
2769    ../docBase/docParaProperties.h \
2770    ../docBase/docParaNumber.h \
2771    ../utilPs/textAttribute.h \
2772    ../docBase/docDocumentProperties.h \
2773    ../docFont/utilDocFontList.h \
2774    ../docFont/utilDocFont.h \
2775    ../utilPs/psFontInfo.h \
2776    ../textEncoding/textOfficeCharset.h \
2777    ../docBase/docListAdmin.h \
2778    ../docBase/docListTable.h \
2779    ../docBase/docListOverrideTable.h \
2780    ../docBase/docDocumentFieldList.h \
2781    ../appUtil/utilPagedList.h \
2782    ../docBuf/docDrawingShapeList.h \
2783    ../docBase/docInsertedObjectList.h \
2784    ../docBase/docObject.h \
2785    ../docBase/docLayoutPosition.h \
2786    ../docBase/docPictureProperties.h \
2787    ../docBuf/docSelect.h \
2788    ../docBase/docLayoutPosition.h \
2789    ../docBase/docSelectionScope.h \
2790    ../docBase/docEditPosition.h \
2791    ../docBase/docEditRange.h \
2792    ../docBase/docEditPosition.h \
2793    ../docBuf/docTableRectangle.h \
2794    ../docBuf/docDocumentTree.h \
2795    ../docBase/docDocumentField.h \
2796    ../docBase/docFieldInstructions.h \
2797    ../docBase/docSelectionScope.h \
2798    ../docBase/docEditRange.h \
2799    ../docBase/docListNumberTree.h \
2800    ../docBase/docListTable.h \
2801    ../appUtil/sioGeneral.h \
2802    docRtfWriter.h
2803
2804docRtfSaveParaProperties.o: \
2805    docRtfSaveParaProperties.c \
2806    docRtfConfig.h \
2807    ../include/appDebugon.h \
2808    ../include/appDebug.h \
2809    docRtfWriterImpl.h \
2810    ../docBuf/docBuf.h \
2811    ../bitmap/bitmap.h \
2812    ../appUtil/utilColor.h \
2813    ../appUtil/utilPalette.h \
2814    ../appUtil/utilColor.h \
2815    ../appUtil/utilMemoryBuffer.h \
2816    ../appUtil/geo2DInteger.h \
2817    ../utilPs/psPostScriptFontList.h \
2818    ../utilPs/psFontFamily.h \
2819    ../utilPs/psFontInfo.h \
2820    ../appUtil/utilIndexSet.h \
2821    ../appUtil/utilIndexMapping.h \
2822    ../docBase/docFramePropertiesAdmin.h \
2823    ../docBase/docFrameProperties.h \
2824    ../docBase/docPropVal.h \
2825    ../appUtil/utilIntegerValueNode.h \
2826    ../appUtil/utilNumberedPropertiesAdmin.h \
2827    ../appUtil/utilIntegerValueNode.h \
2828    ../appUtil/utilPagedList.h \
2829    ../appUtil/utilIndexSet.h \
2830    ../docBase/docStyleSheet.h \
2831    ../docBase/docStyle.h \
2832    ../appUtil/utilPropMask.h \
2833    ../docBase/docSectProperties.h \
2834    ../appUtil/utilDocumentGeometry.h \
2835    ../appUtil/utilPropMask.h \
2836    ../appUtil/geo2DInteger.h \
2837    ../docBase/docNotesProperties.h \
2838    ../docBase/docRowProperties.h \
2839    ../docBase/docCellProperties.h \
2840    ../docBase/docItemShading.h \
2841    ../docBase/docDocumentAttributeMap.h \
2842    ../docBase/docParaProperties.h \
2843    ../docBase/docParaNumber.h \
2844    ../utilPs/textAttribute.h \
2845    ../docBase/docDocumentProperties.h \
2846    ../docFont/utilDocFontList.h \
2847    ../docFont/utilDocFont.h \
2848    ../utilPs/psFontInfo.h \
2849    ../textEncoding/textOfficeCharset.h \
2850    ../docBase/docListAdmin.h \
2851    ../docBase/docListTable.h \
2852    ../docBase/docListOverrideTable.h \
2853    ../docBase/docDocumentFieldList.h \
2854    ../appUtil/utilPagedList.h \
2855    ../docBuf/docDrawingShapeList.h \
2856    ../docBase/docInsertedObjectList.h \
2857    ../docBase/docObject.h \
2858    ../docBase/docLayoutPosition.h \
2859    ../docBase/docPictureProperties.h \
2860    ../docBuf/docSelect.h \
2861    ../docBase/docLayoutPosition.h \
2862    ../docBase/docSelectionScope.h \
2863    ../docBase/docEditPosition.h \
2864    ../docBase/docEditRange.h \
2865    ../docBase/docEditPosition.h \
2866    ../docBuf/docTableRectangle.h \
2867    ../docBuf/docDocumentTree.h \
2868    ../docBase/docDocumentField.h \
2869    ../docBase/docFieldInstructions.h \
2870    ../docBase/docSelectionScope.h \
2871    ../docBase/docEditRange.h \
2872    ../docBase/docListNumberTree.h \
2873    ../docBase/docListTable.h \
2874    ../appUtil/sioGeneral.h \
2875    docRtfWriter.h \
2876    ../docBase/docParaRulerAdmin.h \
2877    ../docBase/docTabStop.h \
2878    ../docBase/docTabStopList.h \
2879    docRtfTags.h
2880
2881docRtfSaveParagraph.o: \
2882    docRtfSaveParagraph.c \
2883    docRtfConfig.h \
2884    ../bitmap/bitmap.h \
2885    ../appUtil/utilColor.h \
2886    ../appUtil/utilPalette.h \
2887    ../appUtil/utilColor.h \
2888    ../appUtil/utilMemoryBuffer.h \
2889    ../appUtil/geo2DInteger.h \
2890    ../include/appDebugon.h \
2891    ../include/appDebug.h \
2892    docRtfFlags.h \
2893    docRtfTags.h \
2894    ../docBase/docTreeType.h \
2895    ../docBase/docObjectProperties.h \
2896    ../docBuf/docParaParticules.h \
2897    ../docBuf/docBuf.h \
2898    ../utilPs/psPostScriptFontList.h \
2899    ../utilPs/psFontFamily.h \
2900    ../utilPs/psFontInfo.h \
2901    ../appUtil/utilIndexSet.h \
2902    ../appUtil/utilIndexMapping.h \
2903    ../docBase/docFramePropertiesAdmin.h \
2904    ../docBase/docFrameProperties.h \
2905    ../docBase/docPropVal.h \
2906    ../appUtil/utilIntegerValueNode.h \
2907    ../appUtil/utilNumberedPropertiesAdmin.h \
2908    ../appUtil/utilIntegerValueNode.h \
2909    ../appUtil/utilPagedList.h \
2910    ../appUtil/utilIndexSet.h \
2911    ../docBase/docStyleSheet.h \
2912    ../docBase/docStyle.h \
2913    ../appUtil/utilPropMask.h \
2914    ../docBase/docSectProperties.h \
2915    ../appUtil/utilDocumentGeometry.h \
2916    ../appUtil/utilPropMask.h \
2917    ../appUtil/geo2DInteger.h \
2918    ../docBase/docNotesProperties.h \
2919    ../docBase/docRowProperties.h \
2920    ../docBase/docCellProperties.h \
2921    ../docBase/docItemShading.h \
2922    ../docBase/docDocumentAttributeMap.h \
2923    ../docBase/docParaProperties.h \
2924    ../docBase/docParaNumber.h \
2925    ../utilPs/textAttribute.h \
2926    ../docBase/docDocumentProperties.h \
2927    ../docFont/utilDocFontList.h \
2928    ../docFont/utilDocFont.h \
2929    ../utilPs/psFontInfo.h \
2930    ../textEncoding/textOfficeCharset.h \
2931    ../docBase/docListAdmin.h \
2932    ../docBase/docListTable.h \
2933    ../docBase/docListOverrideTable.h \
2934    ../docBase/docDocumentFieldList.h \
2935    ../appUtil/utilPagedList.h \
2936    ../docBuf/docDrawingShapeList.h \
2937    ../docBase/docInsertedObjectList.h \
2938    ../docBase/docObject.h \
2939    ../docBase/docLayoutPosition.h \
2940    ../docBase/docPictureProperties.h \
2941    ../docBuf/docSelect.h \
2942    ../docBase/docLayoutPosition.h \
2943    ../docBase/docSelectionScope.h \
2944    ../docBase/docEditPosition.h \
2945    ../docBase/docEditRange.h \
2946    ../docBase/docEditPosition.h \
2947    ../docBuf/docTableRectangle.h \
2948    ../docBuf/docDocumentTree.h \
2949    ../docBase/docDocumentField.h \
2950    ../docBase/docFieldInstructions.h \
2951    ../docBase/docSelectionScope.h \
2952    ../docBase/docEditRange.h \
2953    ../docBase/docListNumberTree.h \
2954    ../docBase/docListTable.h \
2955    ../docBase/docTextParticule.h \
2956    ../docBase/docTextLine.h \
2957    ../docBuf/docTreeNode.h \
2958    ../docBuf/docParaNode.h \
2959    ../docBase/docParaProperties.h \
2960    ../docBuf/docCellNode.h \
2961    ../docBuf/docRowNode.h \
2962    ../docBase/docRowProperties.h \
2963    ../docBuf/docSectNode.h \
2964    ../docBase/docSectProperties.h \
2965    docRtfWriterImpl.h \
2966    ../docBuf/docBuf.h \
2967    ../appUtil/sioGeneral.h \
2968    docRtfWriter.h
2969
2970docRtfSaveRowProperties.o: \
2971    docRtfSaveRowProperties.c \
2972    docRtfConfig.h \
2973    ../include/appDebugon.h \
2974    ../include/appDebug.h \
2975    docRtfWriterImpl.h \
2976    ../docBuf/docBuf.h \
2977    ../bitmap/bitmap.h \
2978    ../appUtil/utilColor.h \
2979    ../appUtil/utilPalette.h \
2980    ../appUtil/utilColor.h \
2981    ../appUtil/utilMemoryBuffer.h \
2982    ../appUtil/geo2DInteger.h \
2983    ../utilPs/psPostScriptFontList.h \
2984    ../utilPs/psFontFamily.h \
2985    ../utilPs/psFontInfo.h \
2986    ../appUtil/utilIndexSet.h \
2987    ../appUtil/utilIndexMapping.h \
2988    ../docBase/docFramePropertiesAdmin.h \
2989    ../docBase/docFrameProperties.h \
2990    ../docBase/docPropVal.h \
2991    ../appUtil/utilIntegerValueNode.h \
2992    ../appUtil/utilNumberedPropertiesAdmin.h \
2993    ../appUtil/utilIntegerValueNode.h \
2994    ../appUtil/utilPagedList.h \
2995    ../appUtil/utilIndexSet.h \
2996    ../docBase/docStyleSheet.h \
2997    ../docBase/docStyle.h \
2998    ../appUtil/utilPropMask.h \
2999    ../docBase/docSectProperties.h \
3000    ../appUtil/utilDocumentGeometry.h \
3001    ../appUtil/utilPropMask.h \
3002    ../appUtil/geo2DInteger.h \
3003    ../docBase/docNotesProperties.h \
3004    ../docBase/docRowProperties.h \
3005    ../docBase/docCellProperties.h \
3006    ../docBase/docItemShading.h \
3007    ../docBase/docDocumentAttributeMap.h \
3008    ../docBase/docParaProperties.h \
3009    ../docBase/docParaNumber.h \
3010    ../utilPs/textAttribute.h \
3011    ../docBase/docDocumentProperties.h \
3012    ../docFont/utilDocFontList.h \
3013    ../docFont/utilDocFont.h \
3014    ../utilPs/psFontInfo.h \
3015    ../textEncoding/textOfficeCharset.h \
3016    ../docBase/docListAdmin.h \
3017    ../docBase/docListTable.h \
3018    ../docBase/docListOverrideTable.h \
3019    ../docBase/docDocumentFieldList.h \
3020    ../appUtil/utilPagedList.h \
3021    ../docBuf/docDrawingShapeList.h \
3022    ../docBase/docInsertedObjectList.h \
3023    ../docBase/docObject.h \
3024    ../docBase/docLayoutPosition.h \
3025    ../docBase/docPictureProperties.h \
3026    ../docBuf/docSelect.h \
3027    ../docBase/docLayoutPosition.h \
3028    ../docBase/docSelectionScope.h \
3029    ../docBase/docEditPosition.h \
3030    ../docBase/docEditRange.h \
3031    ../docBase/docEditPosition.h \
3032    ../docBuf/docTableRectangle.h \
3033    ../docBuf/docDocumentTree.h \
3034    ../docBase/docDocumentField.h \
3035    ../docBase/docFieldInstructions.h \
3036    ../docBase/docSelectionScope.h \
3037    ../docBase/docEditRange.h \
3038    ../docBase/docListNumberTree.h \
3039    ../docBase/docListTable.h \
3040    ../appUtil/sioGeneral.h \
3041    docRtfWriter.h \
3042    docRtfTags.h
3043
3044docRtfSaveSectProperties.o: \
3045    docRtfSaveSectProperties.c \
3046    docRtfConfig.h \
3047    ../include/appDebugon.h \
3048    ../include/appDebug.h \
3049    ../docBase/docTreeType.h \
3050    ../docBuf/docTreeNode.h \
3051    ../docBuf/docParaNode.h \
3052    ../docBase/docParaProperties.h \
3053    ../appUtil/utilPropMask.h \
3054    ../docBase/docDocumentAttributeMap.h \
3055    ../docBase/docObject.h \
3056    ../appUtil/utilMemoryBuffer.h \
3057    ../bitmap/bitmap.h \
3058    ../appUtil/utilColor.h \
3059    ../appUtil/utilPalette.h \
3060    ../appUtil/utilColor.h \
3061    ../appUtil/geo2DInteger.h \
3062    ../docBase/docLayoutPosition.h \
3063    ../docBase/docPictureProperties.h \
3064    ../docBuf/docCellNode.h \
3065    ../docBuf/docRowNode.h \
3066    ../docBase/docLayoutPosition.h \
3067    ../docBase/docRowProperties.h \
3068    ../docBase/docCellProperties.h \
3069    ../docBase/docItemShading.h \
3070    ../docBuf/docSectNode.h \
3071    ../docBase/docSectProperties.h \
3072    ../appUtil/utilDocumentGeometry.h \
3073    ../appUtil/utilPropMask.h \
3074    ../appUtil/geo2DInteger.h \
3075    ../docBase/docNotesProperties.h \
3076    ../docBuf/docDocumentTree.h \
3077    ../docBase/docDocumentField.h \
3078    ../docBase/docFieldInstructions.h \
3079    ../docBase/docSelectionScope.h \
3080    ../docBase/docEditRange.h \
3081    ../docBase/docEditPosition.h \
3082    ../docBase/docListNumberTree.h \
3083    docRtfWriterImpl.h \
3084    ../docBuf/docBuf.h \
3085    ../utilPs/psPostScriptFontList.h \
3086    ../utilPs/psFontFamily.h \
3087    ../utilPs/psFontInfo.h \
3088    ../appUtil/utilIndexSet.h \
3089    ../appUtil/utilIndexMapping.h \
3090    ../docBase/docFramePropertiesAdmin.h \
3091    ../docBase/docFrameProperties.h \
3092    ../docBase/docPropVal.h \
3093    ../appUtil/utilIntegerValueNode.h \
3094    ../appUtil/utilNumberedPropertiesAdmin.h \
3095    ../appUtil/utilIntegerValueNode.h \
3096    ../appUtil/utilPagedList.h \
3097    ../appUtil/utilIndexSet.h \
3098    ../docBase/docStyleSheet.h \
3099    ../docBase/docStyle.h \
3100    ../docBase/docSectProperties.h \
3101    ../docBase/docRowProperties.h \
3102    ../docBase/docParaProperties.h \
3103    ../docBase/docParaNumber.h \
3104    ../utilPs/textAttribute.h \
3105    ../docBase/docDocumentProperties.h \
3106    ../docFont/utilDocFontList.h \
3107    ../docFont/utilDocFont.h \
3108    ../utilPs/psFontInfo.h \
3109    ../textEncoding/textOfficeCharset.h \
3110    ../docBase/docListAdmin.h \
3111    ../docBase/docListTable.h \
3112    ../docBase/docListOverrideTable.h \
3113    ../docBase/docDocumentFieldList.h \
3114    ../appUtil/utilPagedList.h \
3115    ../docBuf/docDrawingShapeList.h \
3116    ../docBase/docInsertedObjectList.h \
3117    ../docBuf/docSelect.h \
3118    ../docBase/docSelectionScope.h \
3119    ../docBase/docEditPosition.h \
3120    ../docBase/docEditRange.h \
3121    ../docBuf/docTableRectangle.h \
3122    ../docBase/docListTable.h \
3123    ../appUtil/sioGeneral.h \
3124    docRtfWriter.h \
3125    docRtfTags.h
3126
3127docRtfSaveStylesheet.o: \
3128    docRtfSaveStylesheet.c \
3129    docRtfConfig.h \
3130    ../include/appDebugon.h \
3131    ../include/appDebug.h \
3132    docRtfWriterImpl.h \
3133    ../docBuf/docBuf.h \
3134    ../bitmap/bitmap.h \
3135    ../appUtil/utilColor.h \
3136    ../appUtil/utilPalette.h \
3137    ../appUtil/utilColor.h \
3138    ../appUtil/utilMemoryBuffer.h \
3139    ../appUtil/geo2DInteger.h \
3140    ../utilPs/psPostScriptFontList.h \
3141    ../utilPs/psFontFamily.h \
3142    ../utilPs/psFontInfo.h \
3143    ../appUtil/utilIndexSet.h \
3144    ../appUtil/utilIndexMapping.h \
3145    ../docBase/docFramePropertiesAdmin.h \
3146    ../docBase/docFrameProperties.h \
3147    ../docBase/docPropVal.h \
3148    ../appUtil/utilIntegerValueNode.h \
3149    ../appUtil/utilNumberedPropertiesAdmin.h \
3150    ../appUtil/utilIntegerValueNode.h \
3151    ../appUtil/utilPagedList.h \
3152    ../appUtil/utilIndexSet.h \
3153    ../docBase/docStyleSheet.h \
3154    ../docBase/docStyle.h \
3155    ../appUtil/utilPropMask.h \
3156    ../docBase/docSectProperties.h \
3157    ../appUtil/utilDocumentGeometry.h \
3158    ../appUtil/utilPropMask.h \
3159    ../appUtil/geo2DInteger.h \
3160    ../docBase/docNotesProperties.h \
3161    ../docBase/docRowProperties.h \
3162    ../docBase/docCellProperties.h \
3163    ../docBase/docItemShading.h \
3164    ../docBase/docDocumentAttributeMap.h \
3165    ../docBase/docParaProperties.h \
3166    ../docBase/docParaNumber.h \
3167    ../utilPs/textAttribute.h \
3168    ../docBase/docDocumentProperties.h \
3169    ../docFont/utilDocFontList.h \
3170    ../docFont/utilDocFont.h \
3171    ../utilPs/psFontInfo.h \
3172    ../textEncoding/textOfficeCharset.h \
3173    ../docBase/docListAdmin.h \
3174    ../docBase/docListTable.h \
3175    ../docBase/docListOverrideTable.h \
3176    ../docBase/docDocumentFieldList.h \
3177    ../appUtil/utilPagedList.h \
3178    ../docBuf/docDrawingShapeList.h \
3179    ../docBase/docInsertedObjectList.h \
3180    ../docBase/docObject.h \
3181    ../docBase/docLayoutPosition.h \
3182    ../docBase/docPictureProperties.h \
3183    ../docBuf/docSelect.h \
3184    ../docBase/docLayoutPosition.h \
3185    ../docBase/docSelectionScope.h \
3186    ../docBase/docEditPosition.h \
3187    ../docBase/docEditRange.h \
3188    ../docBase/docEditPosition.h \
3189    ../docBuf/docTableRectangle.h \
3190    ../docBuf/docDocumentTree.h \
3191    ../docBase/docDocumentField.h \
3192    ../docBase/docFieldInstructions.h \
3193    ../docBase/docSelectionScope.h \
3194    ../docBase/docEditRange.h \
3195    ../docBase/docListNumberTree.h \
3196    ../docBase/docListTable.h \
3197    ../appUtil/sioGeneral.h \
3198    docRtfWriter.h
3199
3200docRtfSaveTextAttribute.o: \
3201    docRtfSaveTextAttribute.c \
3202    docRtfConfig.h \
3203    ../include/appDebugon.h \
3204    ../include/appDebug.h \
3205    ../textEncoding/uniUtf8.h \
3206    ../docFont/utilMatchFont.h \
3207    ../docFont/utilDocFontList.h \
3208    ../docFont/utilDocFont.h \
3209    ../utilPs/psFontInfo.h \
3210    ../appUtil/geo2DInteger.h \
3211    ../appUtil/utilIndexSet.h \
3212    ../appUtil/utilIndexMapping.h \
3213    ../appUtil/utilMemoryBuffer.h \
3214    ../textEncoding/textOfficeCharset.h \
3215    ../utilPs/psPostScriptFontList.h \
3216    ../utilPs/psFontFamily.h \
3217    ../utilPs/psFontInfo.h \
3218    ../utilPs/textAttribute.h \
3219    ../appUtil/utilPropMask.h \
3220    ../utilPs/psShading.h \
3221    docRtfWriterImpl.h \
3222    ../docBuf/docBuf.h \
3223    ../bitmap/bitmap.h \
3224    ../appUtil/utilColor.h \
3225    ../appUtil/utilPalette.h \
3226    ../appUtil/utilColor.h \
3227    ../docBase/docFramePropertiesAdmin.h \
3228    ../docBase/docFrameProperties.h \
3229    ../docBase/docPropVal.h \
3230    ../appUtil/utilIntegerValueNode.h \
3231    ../appUtil/utilNumberedPropertiesAdmin.h \
3232    ../appUtil/utilIntegerValueNode.h \
3233    ../appUtil/utilPagedList.h \
3234    ../appUtil/utilIndexSet.h \
3235    ../docBase/docStyleSheet.h \
3236    ../docBase/docStyle.h \
3237    ../docBase/docSectProperties.h \
3238    ../appUtil/utilDocumentGeometry.h \
3239    ../appUtil/utilPropMask.h \
3240    ../appUtil/geo2DInteger.h \
3241    ../docBase/docNotesProperties.h \
3242    ../docBase/docRowProperties.h \
3243    ../docBase/docCellProperties.h \
3244    ../docBase/docItemShading.h \
3245    ../docBase/docDocumentAttributeMap.h \
3246    ../docBase/docParaProperties.h \
3247    ../docBase/docParaNumber.h \
3248    ../docBase/docDocumentProperties.h \
3249    ../docFont/utilDocFontList.h \
3250    ../docBase/docListAdmin.h \
3251    ../docBase/docListTable.h \
3252    ../docBase/docListOverrideTable.h \
3253    ../docBase/docDocumentFieldList.h \
3254    ../appUtil/utilPagedList.h \
3255    ../docBuf/docDrawingShapeList.h \
3256    ../docBase/docInsertedObjectList.h \
3257    ../docBase/docObject.h \
3258    ../docBase/docLayoutPosition.h \
3259    ../docBase/docPictureProperties.h \
3260    ../docBuf/docSelect.h \
3261    ../docBase/docLayoutPosition.h \
3262    ../docBase/docSelectionScope.h \
3263    ../docBase/docEditPosition.h \
3264    ../docBase/docEditRange.h \
3265    ../docBase/docEditPosition.h \
3266    ../docBuf/docTableRectangle.h \
3267    ../docBuf/docDocumentTree.h \
3268    ../docBase/docDocumentField.h \
3269    ../docBase/docFieldInstructions.h \
3270    ../docBase/docSelectionScope.h \
3271    ../docBase/docEditRange.h \
3272    ../docBase/docListNumberTree.h \
3273    ../docBase/docListTable.h \
3274    ../appUtil/sioGeneral.h \
3275    docRtfWriter.h \
3276    docRtfFlags.h \
3277    docRtfTags.h \
3278    ../textEncoding/textConverter.h
3279
3280docRtfShading.o: \
3281    docRtfShading.c \
3282    docRtfConfig.h \
3283    ../utilPs/psShading.h \
3284    ../include/appDebugon.h \
3285    ../include/appDebug.h \
3286    docRtfWriterImpl.h \
3287    ../docBuf/docBuf.h \
3288    ../bitmap/bitmap.h \
3289    ../appUtil/utilColor.h \
3290    ../appUtil/utilPalette.h \
3291    ../appUtil/utilColor.h \
3292    ../appUtil/utilMemoryBuffer.h \
3293    ../appUtil/geo2DInteger.h \
3294    ../utilPs/psPostScriptFontList.h \
3295    ../utilPs/psFontFamily.h \
3296    ../utilPs/psFontInfo.h \
3297    ../appUtil/utilIndexSet.h \
3298    ../appUtil/utilIndexMapping.h \
3299    ../docBase/docFramePropertiesAdmin.h \
3300    ../docBase/docFrameProperties.h \
3301    ../docBase/docPropVal.h \
3302    ../appUtil/utilIntegerValueNode.h \
3303    ../appUtil/utilNumberedPropertiesAdmin.h \
3304    ../appUtil/utilIntegerValueNode.h \
3305    ../appUtil/utilPagedList.h \
3306    ../appUtil/utilIndexSet.h \
3307    ../docBase/docStyleSheet.h \
3308    ../docBase/docStyle.h \
3309    ../appUtil/utilPropMask.h \
3310    ../docBase/docSectProperties.h \
3311    ../appUtil/utilDocumentGeometry.h \
3312    ../appUtil/utilPropMask.h \
3313    ../appUtil/geo2DInteger.h \
3314    ../docBase/docNotesProperties.h \
3315    ../docBase/docRowProperties.h \
3316    ../docBase/docCellProperties.h \
3317    ../docBase/docItemShading.h \
3318    ../docBase/docDocumentAttributeMap.h \
3319    ../docBase/docParaProperties.h \
3320    ../docBase/docParaNumber.h \
3321    ../utilPs/textAttribute.h \
3322    ../docBase/docDocumentProperties.h \
3323    ../docFont/utilDocFontList.h \
3324    ../docFont/utilDocFont.h \
3325    ../utilPs/psFontInfo.h \
3326    ../textEncoding/textOfficeCharset.h \
3327    ../docBase/docListAdmin.h \
3328    ../docBase/docListTable.h \
3329    ../docBase/docListOverrideTable.h \
3330    ../docBase/docDocumentFieldList.h \
3331    ../appUtil/utilPagedList.h \
3332    ../docBuf/docDrawingShapeList.h \
3333    ../docBase/docInsertedObjectList.h \
3334    ../docBase/docObject.h \
3335    ../docBase/docLayoutPosition.h \
3336    ../docBase/docPictureProperties.h \
3337    ../docBuf/docSelect.h \
3338    ../docBase/docLayoutPosition.h \
3339    ../docBase/docSelectionScope.h \
3340    ../docBase/docEditPosition.h \
3341    ../docBase/docEditRange.h \
3342    ../docBase/docEditPosition.h \
3343    ../docBuf/docTableRectangle.h \
3344    ../docBuf/docDocumentTree.h \
3345    ../docBase/docDocumentField.h \
3346    ../docBase/docFieldInstructions.h \
3347    ../docBase/docSelectionScope.h \
3348    ../docBase/docEditRange.h \
3349    ../docBase/docListNumberTree.h \
3350    ../docBase/docListTable.h \
3351    ../appUtil/sioGeneral.h \
3352    docRtfWriter.h
3353
3354docRtfShapePropHash.o: \
3355    docRtfShapePropHash.c \
3356    ../appUtil/appUtilConfig.h \
3357    ../appUtil/utilJenkinsHash.h \
3358    docRtfTagHash.h
3359
3360docRtfShpTab.o: \
3361    docRtfShpTab.c \
3362    docRtfConfig.h \
3363    ../appUtil/utilJenkinsPerfectHash.h \
3364    ../appUtil/appUtilConfig.h \
3365    docRtfReaderImpl.h \
3366    ../docBuf/docBuf.h \
3367    ../bitmap/bitmap.h \
3368    ../appUtil/utilColor.h \
3369    ../appUtil/utilPalette.h \
3370    ../appUtil/utilColor.h \
3371    ../appUtil/utilMemoryBuffer.h \
3372    ../appUtil/geo2DInteger.h \
3373    ../utilPs/psPostScriptFontList.h \
3374    ../utilPs/psFontFamily.h \
3375    ../utilPs/psFontInfo.h \
3376    ../appUtil/utilIndexSet.h \
3377    ../appUtil/utilIndexMapping.h \
3378    ../docBase/docFramePropertiesAdmin.h \
3379    ../docBase/docFrameProperties.h \
3380    ../docBase/docPropVal.h \
3381    ../appUtil/utilIntegerValueNode.h \
3382    ../appUtil/utilNumberedPropertiesAdmin.h \
3383    ../appUtil/utilIntegerValueNode.h \
3384    ../appUtil/utilPagedList.h \
3385    ../appUtil/utilIndexSet.h \
3386    ../docBase/docStyleSheet.h \
3387    ../docBase/docStyle.h \
3388    ../appUtil/utilPropMask.h \
3389    ../docBase/docSectProperties.h \
3390    ../appUtil/utilDocumentGeometry.h \
3391    ../appUtil/utilPropMask.h \
3392    ../appUtil/geo2DInteger.h \
3393    ../docBase/docNotesProperties.h \
3394    ../docBase/docRowProperties.h \
3395    ../docBase/docCellProperties.h \
3396    ../docBase/docItemShading.h \
3397    ../docBase/docDocumentAttributeMap.h \
3398    ../docBase/docParaProperties.h \
3399    ../docBase/docParaNumber.h \
3400    ../utilPs/textAttribute.h \
3401    ../docBase/docDocumentProperties.h \
3402    ../docFont/utilDocFontList.h \
3403    ../docFont/utilDocFont.h \
3404    ../utilPs/psFontInfo.h \
3405    ../textEncoding/textOfficeCharset.h \
3406    ../docBase/docListAdmin.h \
3407    ../docBase/docListTable.h \
3408    ../docBase/docListOverrideTable.h \
3409    ../docBase/docDocumentFieldList.h \
3410    ../appUtil/utilPagedList.h \
3411    ../docBuf/docDrawingShapeList.h \
3412    ../docBase/docInsertedObjectList.h \
3413    ../docBase/docObject.h \
3414    ../docBase/docLayoutPosition.h \
3415    ../docBase/docPictureProperties.h \
3416    ../docBuf/docSelect.h \
3417    ../docBase/docLayoutPosition.h \
3418    ../docBase/docSelectionScope.h \
3419    ../docBase/docEditPosition.h \
3420    ../docBase/docEditRange.h \
3421    ../docBase/docEditPosition.h \
3422    ../docBuf/docTableRectangle.h \
3423    ../docBuf/docDocumentTree.h \
3424    ../docBase/docDocumentField.h \
3425    ../docBase/docFieldInstructions.h \
3426    ../docBase/docSelectionScope.h \
3427    ../docBase/docEditRange.h \
3428    ../docBase/docListNumberTree.h \
3429    ../docBase/docListTable.h \
3430    ../docBase/docNoteProperties.h \
3431    ../appUtil/sioGeneral.h \
3432    ../docBase/docTabStop.h \
3433    ../docBase/docTabStopList.h \
3434    ../docBase/docTabStop.h \
3435    ../docBase/docListOverride.h \
3436    ../docBase/docListOverrideLevel.h \
3437    ../docBase/docListLevel.h \
3438    ../docBase/docListDepth.h \
3439    ../docBase/docDocumentList.h \
3440    ../docBase/docBorderProperties.h \
3441    docRtfTextConverter.h \
3442    docRtfControlWord.h \
3443    docRtfShpTab.h \
3444    docRtfReaderImpl.h \
3445    docRtfTagHash.h \
3446    ../docBase/docShapeProp.h \
3447    ../include/appDebugon.h \
3448    ../include/appDebug.h
3449
3450docRtfStylesheet.o: \
3451    docRtfStylesheet.c \
3452    docRtfConfig.h \
3453    ../include/appDebugon.h \
3454    ../include/appDebug.h \
3455    docRtfReaderImpl.h \
3456    ../docBuf/docBuf.h \
3457    ../bitmap/bitmap.h \
3458    ../appUtil/utilColor.h \
3459    ../appUtil/utilPalette.h \
3460    ../appUtil/utilColor.h \
3461    ../appUtil/utilMemoryBuffer.h \
3462    ../appUtil/geo2DInteger.h \
3463    ../utilPs/psPostScriptFontList.h \
3464    ../utilPs/psFontFamily.h \
3465    ../utilPs/psFontInfo.h \
3466    ../appUtil/utilIndexSet.h \
3467    ../appUtil/utilIndexMapping.h \
3468    ../docBase/docFramePropertiesAdmin.h \
3469    ../docBase/docFrameProperties.h \
3470    ../docBase/docPropVal.h \
3471    ../appUtil/utilIntegerValueNode.h \
3472    ../appUtil/utilNumberedPropertiesAdmin.h \
3473    ../appUtil/utilIntegerValueNode.h \
3474    ../appUtil/utilPagedList.h \
3475    ../appUtil/utilIndexSet.h \
3476    ../docBase/docStyleSheet.h \
3477    ../docBase/docStyle.h \
3478    ../appUtil/utilPropMask.h \
3479    ../docBase/docSectProperties.h \
3480    ../appUtil/utilDocumentGeometry.h \
3481    ../appUtil/utilPropMask.h \
3482    ../appUtil/geo2DInteger.h \
3483    ../docBase/docNotesProperties.h \
3484    ../docBase/docRowProperties.h \
3485    ../docBase/docCellProperties.h \
3486    ../docBase/docItemShading.h \
3487    ../docBase/docDocumentAttributeMap.h \
3488    ../docBase/docParaProperties.h \
3489    ../docBase/docParaNumber.h \
3490    ../utilPs/textAttribute.h \
3491    ../docBase/docDocumentProperties.h \
3492    ../docFont/utilDocFontList.h \
3493    ../docFont/utilDocFont.h \
3494    ../utilPs/psFontInfo.h \
3495    ../textEncoding/textOfficeCharset.h \
3496    ../docBase/docListAdmin.h \
3497    ../docBase/docListTable.h \
3498    ../docBase/docListOverrideTable.h \
3499    ../docBase/docDocumentFieldList.h \
3500    ../appUtil/utilPagedList.h \
3501    ../docBuf/docDrawingShapeList.h \
3502    ../docBase/docInsertedObjectList.h \
3503    ../docBase/docObject.h \
3504    ../docBase/docLayoutPosition.h \
3505    ../docBase/docPictureProperties.h \
3506    ../docBuf/docSelect.h \
3507    ../docBase/docLayoutPosition.h \
3508    ../docBase/docSelectionScope.h \
3509    ../docBase/docEditPosition.h \
3510    ../docBase/docEditRange.h \
3511    ../docBase/docEditPosition.h \
3512    ../docBuf/docTableRectangle.h \
3513    ../docBuf/docDocumentTree.h \
3514    ../docBase/docDocumentField.h \
3515    ../docBase/docFieldInstructions.h \
3516    ../docBase/docSelectionScope.h \
3517    ../docBase/docEditRange.h \
3518    ../docBase/docListNumberTree.h \
3519    ../docBase/docListTable.h \
3520    ../docBase/docNoteProperties.h \
3521    ../appUtil/sioGeneral.h \
3522    ../docBase/docTabStop.h \
3523    ../docBase/docTabStopList.h \
3524    ../docBase/docTabStop.h \
3525    ../docBase/docListOverride.h \
3526    ../docBase/docListOverrideLevel.h \
3527    ../docBase/docListLevel.h \
3528    ../docBase/docListDepth.h \
3529    ../docBase/docDocumentList.h \
3530    ../docBase/docBorderProperties.h \
3531    docRtfTextConverter.h \
3532    docRtfControlWord.h
3533
3534docRtfTab.o: \
3535    docRtfTab.c \
3536    docRtfConfig.h \
3537    ../include/charnames.h \
3538    ../textEncoding/uniSpecials.h \
3539    ../appUtil/utilJenkinsPerfectHash.h \
3540    ../appUtil/appUtilConfig.h \
3541    ../textEncoding/textOfficeCharset.h \
3542    ../appUtil/utilIndexMapping.h \
3543    ../appUtil/utilIndexSet.h \
3544    docRtfReaderImpl.h \
3545    ../docBuf/docBuf.h \
3546    ../bitmap/bitmap.h \
3547    ../appUtil/utilColor.h \
3548    ../appUtil/utilPalette.h \
3549    ../appUtil/utilColor.h \
3550    ../appUtil/utilMemoryBuffer.h \
3551    ../appUtil/geo2DInteger.h \
3552    ../utilPs/psPostScriptFontList.h \
3553    ../utilPs/psFontFamily.h \
3554    ../utilPs/psFontInfo.h \
3555    ../docBase/docFramePropertiesAdmin.h \
3556    ../docBase/docFrameProperties.h \
3557    ../docBase/docPropVal.h \
3558    ../appUtil/utilIntegerValueNode.h \
3559    ../appUtil/utilNumberedPropertiesAdmin.h \
3560    ../appUtil/utilIntegerValueNode.h \
3561    ../appUtil/utilPagedList.h \
3562    ../appUtil/utilIndexSet.h \
3563    ../docBase/docStyleSheet.h \
3564    ../docBase/docStyle.h \
3565    ../appUtil/utilPropMask.h \
3566    ../docBase/docSectProperties.h \
3567    ../appUtil/utilDocumentGeometry.h \
3568    ../appUtil/utilPropMask.h \
3569    ../appUtil/geo2DInteger.h \
3570    ../docBase/docNotesProperties.h \
3571    ../docBase/docRowProperties.h \
3572    ../docBase/docCellProperties.h \
3573    ../docBase/docItemShading.h \
3574    ../docBase/docDocumentAttributeMap.h \
3575    ../docBase/docParaProperties.h \
3576    ../docBase/docParaNumber.h \
3577    ../utilPs/textAttribute.h \
3578    ../docBase/docDocumentProperties.h \
3579    ../docFont/utilDocFontList.h \
3580    ../docFont/utilDocFont.h \
3581    ../utilPs/psFontInfo.h \
3582    ../docBase/docListAdmin.h \
3583    ../docBase/docListTable.h \
3584    ../docBase/docListOverrideTable.h \
3585    ../docBase/docDocumentFieldList.h \
3586    ../appUtil/utilPagedList.h \
3587    ../docBuf/docDrawingShapeList.h \
3588    ../docBase/docInsertedObjectList.h \
3589    ../docBase/docObject.h \
3590    ../docBase/docLayoutPosition.h \
3591    ../docBase/docPictureProperties.h \
3592    ../docBuf/docSelect.h \
3593    ../docBase/docLayoutPosition.h \
3594    ../docBase/docSelectionScope.h \
3595    ../docBase/docEditPosition.h \
3596    ../docBase/docEditRange.h \
3597    ../docBase/docEditPosition.h \
3598    ../docBuf/docTableRectangle.h \
3599    ../docBuf/docDocumentTree.h \
3600    ../docBase/docDocumentField.h \
3601    ../docBase/docFieldInstructions.h \
3602    ../docBase/docSelectionScope.h \
3603    ../docBase/docEditRange.h \
3604    ../docBase/docListNumberTree.h \
3605    ../docBase/docListTable.h \
3606    ../docBase/docNoteProperties.h \
3607    ../appUtil/sioGeneral.h \
3608    ../docBase/docTabStop.h \
3609    ../docBase/docTabStopList.h \
3610    ../docBase/docTabStop.h \
3611    ../docBase/docListOverride.h \
3612    ../docBase/docListOverrideLevel.h \
3613    ../docBase/docListLevel.h \
3614    ../docBase/docListDepth.h \
3615    ../docBase/docDocumentList.h \
3616    ../docBase/docBorderProperties.h \
3617    docRtfTextConverter.h \
3618    docRtfControlWord.h \
3619    docRtfTagHash.h \
3620    docRtfTraceImpl.h \
3621    docRtfTagEnum.h \
3622    docRtfTags.h \
3623    ../docBase/docTreeType.h \
3624    ../docBase/docItemShading.h \
3625    ../docBase/docDrawingObject.h \
3626    ../docBase/docTextParticule.h \
3627    ../docBase/docObjectProperties.h \
3628    ../docBuf/docShape.h \
3629    ../appUtil/geoAffineTransform.h \
3630    ../docBase/docShapeProperties.h \
3631    ../docBase/docPictureProperties.h \
3632    ../docBase/docShapeDrawing.h \
3633    ../utilPs/psShading.h \
3634    ../utilPs/psDocumentFontStyle.h \
3635    ../include/appDebugon.h \
3636    ../include/appDebug.h
3637
3638docRtfTables.o: \
3639    docRtfTables.c \
3640    docRtfConfig.h \
3641    ../include/appDebugon.h \
3642    ../include/appDebug.h \
3643    docRtfReaderImpl.h \
3644    ../docBuf/docBuf.h \
3645    ../bitmap/bitmap.h \
3646    ../appUtil/utilColor.h \
3647    ../appUtil/utilPalette.h \
3648    ../appUtil/utilColor.h \
3649    ../appUtil/utilMemoryBuffer.h \
3650    ../appUtil/geo2DInteger.h \
3651    ../utilPs/psPostScriptFontList.h \
3652    ../utilPs/psFontFamily.h \
3653    ../utilPs/psFontInfo.h \
3654    ../appUtil/utilIndexSet.h \
3655    ../appUtil/utilIndexMapping.h \
3656    ../docBase/docFramePropertiesAdmin.h \
3657    ../docBase/docFrameProperties.h \
3658    ../docBase/docPropVal.h \
3659    ../appUtil/utilIntegerValueNode.h \
3660    ../appUtil/utilNumberedPropertiesAdmin.h \
3661    ../appUtil/utilIntegerValueNode.h \
3662    ../appUtil/utilPagedList.h \
3663    ../appUtil/utilIndexSet.h \
3664    ../docBase/docStyleSheet.h \
3665    ../docBase/docStyle.h \
3666    ../appUtil/utilPropMask.h \
3667    ../docBase/docSectProperties.h \
3668    ../appUtil/utilDocumentGeometry.h \
3669    ../appUtil/utilPropMask.h \
3670    ../appUtil/geo2DInteger.h \
3671    ../docBase/docNotesProperties.h \
3672    ../docBase/docRowProperties.h \
3673    ../docBase/docCellProperties.h \
3674    ../docBase/docItemShading.h \
3675    ../docBase/docDocumentAttributeMap.h \
3676    ../docBase/docParaProperties.h \
3677    ../docBase/docParaNumber.h \
3678    ../utilPs/textAttribute.h \
3679    ../docBase/docDocumentProperties.h \
3680    ../docFont/utilDocFontList.h \
3681    ../docFont/utilDocFont.h \
3682    ../utilPs/psFontInfo.h \
3683    ../textEncoding/textOfficeCharset.h \
3684    ../docBase/docListAdmin.h \
3685    ../docBase/docListTable.h \
3686    ../docBase/docListOverrideTable.h \
3687    ../docBase/docDocumentFieldList.h \
3688    ../appUtil/utilPagedList.h \
3689    ../docBuf/docDrawingShapeList.h \
3690    ../docBase/docInsertedObjectList.h \
3691    ../docBase/docObject.h \
3692    ../docBase/docLayoutPosition.h \
3693    ../docBase/docPictureProperties.h \
3694    ../docBuf/docSelect.h \
3695    ../docBase/docLayoutPosition.h \
3696    ../docBase/docSelectionScope.h \
3697    ../docBase/docEditPosition.h \
3698    ../docBase/docEditRange.h \
3699    ../docBase/docEditPosition.h \
3700    ../docBuf/docTableRectangle.h \
3701    ../docBuf/docDocumentTree.h \
3702    ../docBase/docDocumentField.h \
3703    ../docBase/docFieldInstructions.h \
3704    ../docBase/docSelectionScope.h \
3705    ../docBase/docEditRange.h \
3706    ../docBase/docListNumberTree.h \
3707    ../docBase/docListTable.h \
3708    ../docBase/docNoteProperties.h \
3709    ../appUtil/sioGeneral.h \
3710    ../docBase/docTabStop.h \
3711    ../docBase/docTabStopList.h \
3712    ../docBase/docTabStop.h \
3713    ../docBase/docListOverride.h \
3714    ../docBase/docListOverrideLevel.h \
3715    ../docBase/docListLevel.h \
3716    ../docBase/docListDepth.h \
3717    ../docBase/docDocumentList.h \
3718    ../docBase/docBorderProperties.h \
3719    docRtfTextConverter.h \
3720    docRtfControlWord.h
3721
3722docRtfTabs.o: \
3723    docRtfTabs.c \
3724    docRtfConfig.h \
3725    ../include/appDebugon.h \
3726    ../include/appDebug.h \
3727    docRtfWriterImpl.h \
3728    ../docBuf/docBuf.h \
3729    ../bitmap/bitmap.h \
3730    ../appUtil/utilColor.h \
3731    ../appUtil/utilPalette.h \
3732    ../appUtil/utilColor.h \
3733    ../appUtil/utilMemoryBuffer.h \
3734    ../appUtil/geo2DInteger.h \
3735    ../utilPs/psPostScriptFontList.h \
3736    ../utilPs/psFontFamily.h \
3737    ../utilPs/psFontInfo.h \
3738    ../appUtil/utilIndexSet.h \
3739    ../appUtil/utilIndexMapping.h \
3740    ../docBase/docFramePropertiesAdmin.h \
3741    ../docBase/docFrameProperties.h \
3742    ../docBase/docPropVal.h \
3743    ../appUtil/utilIntegerValueNode.h \
3744    ../appUtil/utilNumberedPropertiesAdmin.h \
3745    ../appUtil/utilIntegerValueNode.h \
3746    ../appUtil/utilPagedList.h \
3747    ../appUtil/utilIndexSet.h \
3748    ../docBase/docStyleSheet.h \
3749    ../docBase/docStyle.h \
3750    ../appUtil/utilPropMask.h \
3751    ../docBase/docSectProperties.h \
3752    ../appUtil/utilDocumentGeometry.h \
3753    ../appUtil/utilPropMask.h \
3754    ../appUtil/geo2DInteger.h \
3755    ../docBase/docNotesProperties.h \
3756    ../docBase/docRowProperties.h \
3757    ../docBase/docCellProperties.h \
3758    ../docBase/docItemShading.h \
3759    ../docBase/docDocumentAttributeMap.h \
3760    ../docBase/docParaProperties.h \
3761    ../docBase/docParaNumber.h \
3762    ../utilPs/textAttribute.h \
3763    ../docBase/docDocumentProperties.h \
3764    ../docFont/utilDocFontList.h \
3765    ../docFont/utilDocFont.h \
3766    ../utilPs/psFontInfo.h \
3767    ../textEncoding/textOfficeCharset.h \
3768    ../docBase/docListAdmin.h \
3769    ../docBase/docListTable.h \
3770    ../docBase/docListOverrideTable.h \
3771    ../docBase/docDocumentFieldList.h \
3772    ../appUtil/utilPagedList.h \
3773    ../docBuf/docDrawingShapeList.h \
3774    ../docBase/docInsertedObjectList.h \
3775    ../docBase/docObject.h \
3776    ../docBase/docLayoutPosition.h \
3777    ../docBase/docPictureProperties.h \
3778    ../docBuf/docSelect.h \
3779    ../docBase/docLayoutPosition.h \
3780    ../docBase/docSelectionScope.h \
3781    ../docBase/docEditPosition.h \
3782    ../docBase/docEditRange.h \
3783    ../docBase/docEditPosition.h \
3784    ../docBuf/docTableRectangle.h \
3785    ../docBuf/docDocumentTree.h \
3786    ../docBase/docDocumentField.h \
3787    ../docBase/docFieldInstructions.h \
3788    ../docBase/docSelectionScope.h \
3789    ../docBase/docEditRange.h \
3790    ../docBase/docListNumberTree.h \
3791    ../docBase/docListTable.h \
3792    ../appUtil/sioGeneral.h \
3793    docRtfWriter.h \
3794    docRtfReaderImpl.h \
3795    ../docBase/docNoteProperties.h \
3796    ../docBase/docTabStop.h \
3797    ../docBase/docTabStopList.h \
3798    ../docBase/docTabStop.h \
3799    ../docBase/docListOverride.h \
3800    ../docBase/docListOverrideLevel.h \
3801    ../docBase/docListLevel.h \
3802    ../docBase/docListDepth.h \
3803    ../docBase/docDocumentList.h \
3804    ../docBase/docBorderProperties.h \
3805    docRtfTextConverter.h \
3806    docRtfControlWord.h \
3807    docRtfTags.h
3808
3809docRtfTagHash.o: \
3810    docRtfTagHash.c \
3811    ../appUtil/appUtilConfig.h \
3812    ../appUtil/utilJenkinsHash.h \
3813    docRtfTagHash.h
3814
3815docRtfTextConverter.o: \
3816    docRtfTextConverter.c \
3817    docRtfConfig.h \
3818    ../textEncoding/textOfficeCharset.h \
3819    ../appUtil/utilIndexMapping.h \
3820    ../appUtil/utilIndexSet.h \
3821    docRtfTextConverter.h \
3822    ../include/appDebugon.h \
3823    ../include/appDebug.h
3824
3825docRtfTextProperties.o: \
3826    docRtfTextProperties.c \
3827    docRtfConfig.h \
3828    ../include/appDebugon.h \
3829    ../include/appDebug.h \
3830    docRtfReaderImpl.h \
3831    ../docBuf/docBuf.h \
3832    ../bitmap/bitmap.h \
3833    ../appUtil/utilColor.h \
3834    ../appUtil/utilPalette.h \
3835    ../appUtil/utilColor.h \
3836    ../appUtil/utilMemoryBuffer.h \
3837    ../appUtil/geo2DInteger.h \
3838    ../utilPs/psPostScriptFontList.h \
3839    ../utilPs/psFontFamily.h \
3840    ../utilPs/psFontInfo.h \
3841    ../appUtil/utilIndexSet.h \
3842    ../appUtil/utilIndexMapping.h \
3843    ../docBase/docFramePropertiesAdmin.h \
3844    ../docBase/docFrameProperties.h \
3845    ../docBase/docPropVal.h \
3846    ../appUtil/utilIntegerValueNode.h \
3847    ../appUtil/utilNumberedPropertiesAdmin.h \
3848    ../appUtil/utilIntegerValueNode.h \
3849    ../appUtil/utilPagedList.h \
3850    ../appUtil/utilIndexSet.h \
3851    ../docBase/docStyleSheet.h \
3852    ../docBase/docStyle.h \
3853    ../appUtil/utilPropMask.h \
3854    ../docBase/docSectProperties.h \
3855    ../appUtil/utilDocumentGeometry.h \
3856    ../appUtil/utilPropMask.h \
3857    ../appUtil/geo2DInteger.h \
3858    ../docBase/docNotesProperties.h \
3859    ../docBase/docRowProperties.h \
3860    ../docBase/docCellProperties.h \
3861    ../docBase/docItemShading.h \
3862    ../docBase/docDocumentAttributeMap.h \
3863    ../docBase/docParaProperties.h \
3864    ../docBase/docParaNumber.h \
3865    ../utilPs/textAttribute.h \
3866    ../docBase/docDocumentProperties.h \
3867    ../docFont/utilDocFontList.h \
3868    ../docFont/utilDocFont.h \
3869    ../utilPs/psFontInfo.h \
3870    ../textEncoding/textOfficeCharset.h \
3871    ../docBase/docListAdmin.h \
3872    ../docBase/docListTable.h \
3873    ../docBase/docListOverrideTable.h \
3874    ../docBase/docDocumentFieldList.h \
3875    ../appUtil/utilPagedList.h \
3876    ../docBuf/docDrawingShapeList.h \
3877    ../docBase/docInsertedObjectList.h \
3878    ../docBase/docObject.h \
3879    ../docBase/docLayoutPosition.h \
3880    ../docBase/docPictureProperties.h \
3881    ../docBuf/docSelect.h \
3882    ../docBase/docLayoutPosition.h \
3883    ../docBase/docSelectionScope.h \
3884    ../docBase/docEditPosition.h \
3885    ../docBase/docEditRange.h \
3886    ../docBase/docEditPosition.h \
3887    ../docBuf/docTableRectangle.h \
3888    ../docBuf/docDocumentTree.h \
3889    ../docBase/docDocumentField.h \
3890    ../docBase/docFieldInstructions.h \
3891    ../docBase/docSelectionScope.h \
3892    ../docBase/docEditRange.h \
3893    ../docBase/docListNumberTree.h \
3894    ../docBase/docListTable.h \
3895    ../docBase/docNoteProperties.h \
3896    ../appUtil/sioGeneral.h \
3897    ../docBase/docTabStop.h \
3898    ../docBase/docTabStopList.h \
3899    ../docBase/docTabStop.h \
3900    ../docBase/docListOverride.h \
3901    ../docBase/docListOverrideLevel.h \
3902    ../docBase/docListLevel.h \
3903    ../docBase/docListDepth.h \
3904    ../docBase/docDocumentList.h \
3905    ../docBase/docBorderProperties.h \
3906    docRtfTextConverter.h \
3907    docRtfControlWord.h \
3908    docRtfFlags.h
3909
3910docRtfWriteColorTable.o: \
3911    docRtfWriteColorTable.c \
3912    docRtfConfig.h \
3913    ../include/appDebugon.h \
3914    ../include/appDebug.h \
3915    docRtfWriterImpl.h \
3916    ../docBuf/docBuf.h \
3917    ../bitmap/bitmap.h \
3918    ../appUtil/utilColor.h \
3919    ../appUtil/utilPalette.h \
3920    ../appUtil/utilColor.h \
3921    ../appUtil/utilMemoryBuffer.h \
3922    ../appUtil/geo2DInteger.h \
3923    ../utilPs/psPostScriptFontList.h \
3924    ../utilPs/psFontFamily.h \
3925    ../utilPs/psFontInfo.h \
3926    ../appUtil/utilIndexSet.h \
3927    ../appUtil/utilIndexMapping.h \
3928    ../docBase/docFramePropertiesAdmin.h \
3929    ../docBase/docFrameProperties.h \
3930    ../docBase/docPropVal.h \
3931    ../appUtil/utilIntegerValueNode.h \
3932    ../appUtil/utilNumberedPropertiesAdmin.h \
3933    ../appUtil/utilIntegerValueNode.h \
3934    ../appUtil/utilPagedList.h \
3935    ../appUtil/utilIndexSet.h \
3936    ../docBase/docStyleSheet.h \
3937    ../docBase/docStyle.h \
3938    ../appUtil/utilPropMask.h \
3939    ../docBase/docSectProperties.h \
3940    ../appUtil/utilDocumentGeometry.h \
3941    ../appUtil/utilPropMask.h \
3942    ../appUtil/geo2DInteger.h \
3943    ../docBase/docNotesProperties.h \
3944    ../docBase/docRowProperties.h \
3945    ../docBase/docCellProperties.h \
3946    ../docBase/docItemShading.h \
3947    ../docBase/docDocumentAttributeMap.h \
3948    ../docBase/docParaProperties.h \
3949    ../docBase/docParaNumber.h \
3950    ../utilPs/textAttribute.h \
3951    ../docBase/docDocumentProperties.h \
3952    ../docFont/utilDocFontList.h \
3953    ../docFont/utilDocFont.h \
3954    ../utilPs/psFontInfo.h \
3955    ../textEncoding/textOfficeCharset.h \
3956    ../docBase/docListAdmin.h \
3957    ../docBase/docListTable.h \
3958    ../docBase/docListOverrideTable.h \
3959    ../docBase/docDocumentFieldList.h \
3960    ../appUtil/utilPagedList.h \
3961    ../docBuf/docDrawingShapeList.h \
3962    ../docBase/docInsertedObjectList.h \
3963    ../docBase/docObject.h \
3964    ../docBase/docLayoutPosition.h \
3965    ../docBase/docPictureProperties.h \
3966    ../docBuf/docSelect.h \
3967    ../docBase/docLayoutPosition.h \
3968    ../docBase/docSelectionScope.h \
3969    ../docBase/docEditPosition.h \
3970    ../docBase/docEditRange.h \
3971    ../docBase/docEditPosition.h \
3972    ../docBuf/docTableRectangle.h \
3973    ../docBuf/docDocumentTree.h \
3974    ../docBase/docDocumentField.h \
3975    ../docBase/docFieldInstructions.h \
3976    ../docBase/docSelectionScope.h \
3977    ../docBase/docEditRange.h \
3978    ../docBase/docListNumberTree.h \
3979    ../docBase/docListTable.h \
3980    ../appUtil/sioGeneral.h \
3981    docRtfWriter.h
3982
3983docRtfWriteListTable.o: \
3984    docRtfWriteListTable.c \
3985    docRtfConfig.h \
3986    ../include/appDebugon.h \
3987    ../include/appDebug.h \
3988    docRtfWriterImpl.h \
3989    ../docBuf/docBuf.h \
3990    ../bitmap/bitmap.h \
3991    ../appUtil/utilColor.h \
3992    ../appUtil/utilPalette.h \
3993    ../appUtil/utilColor.h \
3994    ../appUtil/utilMemoryBuffer.h \
3995    ../appUtil/geo2DInteger.h \
3996    ../utilPs/psPostScriptFontList.h \
3997    ../utilPs/psFontFamily.h \
3998    ../utilPs/psFontInfo.h \
3999    ../appUtil/utilIndexSet.h \
4000    ../appUtil/utilIndexMapping.h \
4001    ../docBase/docFramePropertiesAdmin.h \
4002    ../docBase/docFrameProperties.h \
4003    ../docBase/docPropVal.h \
4004    ../appUtil/utilIntegerValueNode.h \
4005    ../appUtil/utilNumberedPropertiesAdmin.h \
4006    ../appUtil/utilIntegerValueNode.h \
4007    ../appUtil/utilPagedList.h \
4008    ../appUtil/utilIndexSet.h \
4009    ../docBase/docStyleSheet.h \
4010    ../docBase/docStyle.h \
4011    ../appUtil/utilPropMask.h \
4012    ../docBase/docSectProperties.h \
4013    ../appUtil/utilDocumentGeometry.h \
4014    ../appUtil/utilPropMask.h \
4015    ../appUtil/geo2DInteger.h \
4016    ../docBase/docNotesProperties.h \
4017    ../docBase/docRowProperties.h \
4018    ../docBase/docCellProperties.h \
4019    ../docBase/docItemShading.h \
4020    ../docBase/docDocumentAttributeMap.h \
4021    ../docBase/docParaProperties.h \
4022    ../docBase/docParaNumber.h \
4023    ../utilPs/textAttribute.h \
4024    ../docBase/docDocumentProperties.h \
4025    ../docFont/utilDocFontList.h \
4026    ../docFont/utilDocFont.h \
4027    ../utilPs/psFontInfo.h \
4028    ../textEncoding/textOfficeCharset.h \
4029    ../docBase/docListAdmin.h \
4030    ../docBase/docListTable.h \
4031    ../docBase/docListOverrideTable.h \
4032    ../docBase/docDocumentFieldList.h \
4033    ../appUtil/utilPagedList.h \
4034    ../docBuf/docDrawingShapeList.h \
4035    ../docBase/docInsertedObjectList.h \
4036    ../docBase/docObject.h \
4037    ../docBase/docLayoutPosition.h \
4038    ../docBase/docPictureProperties.h \
4039    ../docBuf/docSelect.h \
4040    ../docBase/docLayoutPosition.h \
4041    ../docBase/docSelectionScope.h \
4042    ../docBase/docEditPosition.h \
4043    ../docBase/docEditRange.h \
4044    ../docBase/docEditPosition.h \
4045    ../docBuf/docTableRectangle.h \
4046    ../docBuf/docDocumentTree.h \
4047    ../docBase/docDocumentField.h \
4048    ../docBase/docFieldInstructions.h \
4049    ../docBase/docSelectionScope.h \
4050    ../docBase/docEditRange.h \
4051    ../docBase/docListNumberTree.h \
4052    ../docBase/docListTable.h \
4053    ../appUtil/sioGeneral.h \
4054    docRtfWriter.h \
4055    ../docBase/docListLevel.h \
4056    ../docBase/docDocumentList.h \
4057    ../docBase/docListDepth.h \
4058    ../docBase/docListLevel.h
4059
4060docRtfWriteMail.o: \
4061    docRtfWriteMail.c \
4062    docRtfConfig.h \
4063    ../include/appDebugon.h \
4064    ../include/appDebug.h \
4065    ../appUtil/sioGeneral.h \
4066    ../appUtil/sioBase64.h \
4067    ../appUtil/sioGeneral.h \
4068    docRtfReadWrite.h \
4069    ../docBuf/docBuf.h \
4070    ../bitmap/bitmap.h \
4071    ../appUtil/utilColor.h \
4072    ../appUtil/utilPalette.h \
4073    ../appUtil/utilColor.h \
4074    ../appUtil/utilMemoryBuffer.h \
4075    ../appUtil/geo2DInteger.h \
4076    ../utilPs/psPostScriptFontList.h \
4077    ../utilPs/psFontFamily.h \
4078    ../utilPs/psFontInfo.h \
4079    ../appUtil/utilIndexSet.h \
4080    ../appUtil/utilIndexMapping.h \
4081    ../docBase/docFramePropertiesAdmin.h \
4082    ../docBase/docFrameProperties.h \
4083    ../docBase/docPropVal.h \
4084    ../appUtil/utilIntegerValueNode.h \
4085    ../appUtil/utilNumberedPropertiesAdmin.h \
4086    ../appUtil/utilIntegerValueNode.h \
4087    ../appUtil/utilPagedList.h \
4088    ../appUtil/utilIndexSet.h \
4089    ../docBase/docStyleSheet.h \
4090    ../docBase/docStyle.h \
4091    ../appUtil/utilPropMask.h \
4092    ../docBase/docSectProperties.h \
4093    ../appUtil/utilDocumentGeometry.h \
4094    ../appUtil/utilPropMask.h \
4095    ../appUtil/geo2DInteger.h \
4096    ../docBase/docNotesProperties.h \
4097    ../docBase/docRowProperties.h \
4098    ../docBase/docCellProperties.h \
4099    ../docBase/docItemShading.h \
4100    ../docBase/docDocumentAttributeMap.h \
4101    ../docBase/docParaProperties.h \
4102    ../docBase/docParaNumber.h \
4103    ../utilPs/textAttribute.h \
4104    ../docBase/docDocumentProperties.h \
4105    ../docFont/utilDocFontList.h \
4106    ../docFont/utilDocFont.h \
4107    ../utilPs/psFontInfo.h \
4108    ../textEncoding/textOfficeCharset.h \
4109    ../docBase/docListAdmin.h \
4110    ../docBase/docListTable.h \
4111    ../docBase/docListOverrideTable.h \
4112    ../docBase/docDocumentFieldList.h \
4113    ../appUtil/utilPagedList.h \
4114    ../docBuf/docDrawingShapeList.h \
4115    ../docBase/docInsertedObjectList.h \
4116    ../docBase/docObject.h \
4117    ../docBase/docLayoutPosition.h \
4118    ../docBase/docPictureProperties.h \
4119    ../docBuf/docSelect.h \
4120    ../docBase/docLayoutPosition.h \
4121    ../docBase/docSelectionScope.h \
4122    ../docBase/docEditPosition.h \
4123    ../docBase/docEditRange.h \
4124    ../docBase/docEditPosition.h \
4125    ../docBuf/docTableRectangle.h \
4126    ../docBuf/docDocumentTree.h \
4127    ../docBase/docDocumentField.h \
4128    ../docBase/docFieldInstructions.h \
4129    ../docBase/docSelectionScope.h \
4130    ../docBase/docEditRange.h \
4131    ../docBase/docListNumberTree.h \
4132    ../docBase/docListTable.h \
4133    docPlainReadWrite.h \
4134    ../docBuf/docTreeNode.h \
4135    ../docBuf/docParaNode.h \
4136    ../docBase/docParaProperties.h \
4137    ../docBuf/docCellNode.h \
4138    ../docBuf/docRowNode.h \
4139    ../docBase/docRowProperties.h \
4140    ../docBuf/docSectNode.h \
4141    ../docBase/docSectProperties.h
4142
4143docRtfWriteNode.o: \
4144    docRtfWriteNode.c \
4145    docRtfConfig.h \
4146    ../include/appDebugon.h \
4147    ../include/appDebug.h \
4148    ../docBase/docTreeType.h \
4149    ../docBuf/docTreeScanner.h \
4150    ../docBuf/docBuf.h \
4151    ../bitmap/bitmap.h \
4152    ../appUtil/utilColor.h \
4153    ../appUtil/utilPalette.h \
4154    ../appUtil/utilColor.h \
4155    ../appUtil/utilMemoryBuffer.h \
4156    ../appUtil/geo2DInteger.h \
4157    ../utilPs/psPostScriptFontList.h \
4158    ../utilPs/psFontFamily.h \
4159    ../utilPs/psFontInfo.h \
4160    ../appUtil/utilIndexSet.h \
4161    ../appUtil/utilIndexMapping.h \
4162    ../docBase/docFramePropertiesAdmin.h \
4163    ../docBase/docFrameProperties.h \
4164    ../docBase/docPropVal.h \
4165    ../appUtil/utilIntegerValueNode.h \
4166    ../appUtil/utilNumberedPropertiesAdmin.h \
4167    ../appUtil/utilIntegerValueNode.h \
4168    ../appUtil/utilPagedList.h \
4169    ../appUtil/utilIndexSet.h \
4170    ../docBase/docStyleSheet.h \
4171    ../docBase/docStyle.h \
4172    ../appUtil/utilPropMask.h \
4173    ../docBase/docSectProperties.h \
4174    ../appUtil/utilDocumentGeometry.h \
4175    ../appUtil/utilPropMask.h \
4176    ../appUtil/geo2DInteger.h \
4177    ../docBase/docNotesProperties.h \
4178    ../docBase/docRowProperties.h \
4179    ../docBase/docCellProperties.h \
4180    ../docBase/docItemShading.h \
4181    ../docBase/docDocumentAttributeMap.h \
4182    ../docBase/docParaProperties.h \
4183    ../docBase/docParaNumber.h \
4184    ../utilPs/textAttribute.h \
4185    ../docBase/docDocumentProperties.h \
4186    ../docFont/utilDocFontList.h \
4187    ../docFont/utilDocFont.h \
4188    ../utilPs/psFontInfo.h \
4189    ../textEncoding/textOfficeCharset.h \
4190    ../docBase/docListAdmin.h \
4191    ../docBase/docListTable.h \
4192    ../docBase/docListOverrideTable.h \
4193    ../docBase/docDocumentFieldList.h \
4194    ../appUtil/utilPagedList.h \
4195    ../docBuf/docDrawingShapeList.h \
4196    ../docBase/docInsertedObjectList.h \
4197    ../docBase/docObject.h \
4198    ../docBase/docLayoutPosition.h \
4199    ../docBase/docPictureProperties.h \
4200    ../docBuf/docSelect.h \
4201    ../docBase/docLayoutPosition.h \
4202    ../docBase/docSelectionScope.h \
4203    ../docBase/docEditPosition.h \
4204    ../docBase/docEditRange.h \
4205    ../docBase/docEditPosition.h \
4206    ../docBuf/docTableRectangle.h \
4207    ../docBuf/docDocumentTree.h \
4208    ../docBase/docDocumentField.h \
4209    ../docBase/docFieldInstructions.h \
4210    ../docBase/docSelectionScope.h \
4211    ../docBase/docEditRange.h \
4212    ../docBase/docListNumberTree.h \
4213    ../docBase/docListTable.h \
4214    ../docBuf/docTreeNode.h \
4215    ../docBuf/docParaNode.h \
4216    ../docBase/docParaProperties.h \
4217    ../docBuf/docCellNode.h \
4218    ../docBuf/docRowNode.h \
4219    ../docBase/docRowProperties.h \
4220    ../docBuf/docSectNode.h \
4221    ../docBase/docSectProperties.h \
4222    ../docBuf/docNodeTree.h \
4223    docRtfWriterImpl.h \
4224    ../docBuf/docBuf.h \
4225    ../appUtil/sioGeneral.h \
4226    docRtfWriter.h \
4227    docRtfTags.h \
4228    docRtfFlags.h
4229
4230docRtfWritePictureTags.o: \
4231    docRtfWritePictureTags.c \
4232    docRtfConfig.h \
4233    ../include/appDebugon.h \
4234    ../include/appDebug.h \
4235    ../docBase/docObjectProperties.h \
4236    ../appUtil/geoUnits.h \
4237    docRtfWriterImpl.h \
4238    ../docBuf/docBuf.h \
4239    ../bitmap/bitmap.h \
4240    ../appUtil/utilColor.h \
4241    ../appUtil/utilPalette.h \
4242    ../appUtil/utilColor.h \
4243    ../appUtil/utilMemoryBuffer.h \
4244    ../appUtil/geo2DInteger.h \
4245    ../utilPs/psPostScriptFontList.h \
4246    ../utilPs/psFontFamily.h \
4247    ../utilPs/psFontInfo.h \
4248    ../appUtil/utilIndexSet.h \
4249    ../appUtil/utilIndexMapping.h \
4250    ../docBase/docFramePropertiesAdmin.h \
4251    ../docBase/docFrameProperties.h \
4252    ../docBase/docPropVal.h \
4253    ../appUtil/utilIntegerValueNode.h \
4254    ../appUtil/utilNumberedPropertiesAdmin.h \
4255    ../appUtil/utilIntegerValueNode.h \
4256    ../appUtil/utilPagedList.h \
4257    ../appUtil/utilIndexSet.h \
4258    ../docBase/docStyleSheet.h \
4259    ../docBase/docStyle.h \
4260    ../appUtil/utilPropMask.h \
4261    ../docBase/docSectProperties.h \
4262    ../appUtil/utilDocumentGeometry.h \
4263    ../appUtil/utilPropMask.h \
4264    ../appUtil/geo2DInteger.h \
4265    ../docBase/docNotesProperties.h \
4266    ../docBase/docRowProperties.h \
4267    ../docBase/docCellProperties.h \
4268    ../docBase/docItemShading.h \
4269    ../docBase/docDocumentAttributeMap.h \
4270    ../docBase/docParaProperties.h \
4271    ../docBase/docParaNumber.h \
4272    ../utilPs/textAttribute.h \
4273    ../docBase/docDocumentProperties.h \
4274    ../docFont/utilDocFontList.h \
4275    ../docFont/utilDocFont.h \
4276    ../utilPs/psFontInfo.h \
4277    ../textEncoding/textOfficeCharset.h \
4278    ../docBase/docListAdmin.h \
4279    ../docBase/docListTable.h \
4280    ../docBase/docListOverrideTable.h \
4281    ../docBase/docDocumentFieldList.h \
4282    ../appUtil/utilPagedList.h \
4283    ../docBuf/docDrawingShapeList.h \
4284    ../docBase/docInsertedObjectList.h \
4285    ../docBase/docObject.h \
4286    ../docBase/docLayoutPosition.h \
4287    ../docBase/docPictureProperties.h \
4288    ../docBuf/docSelect.h \
4289    ../docBase/docLayoutPosition.h \
4290    ../docBase/docSelectionScope.h \
4291    ../docBase/docEditPosition.h \
4292    ../docBase/docEditRange.h \
4293    ../docBase/docEditPosition.h \
4294    ../docBuf/docTableRectangle.h \
4295    ../docBuf/docDocumentTree.h \
4296    ../docBase/docDocumentField.h \
4297    ../docBase/docFieldInstructions.h \
4298    ../docBase/docSelectionScope.h \
4299    ../docBase/docEditRange.h \
4300    ../docBase/docListNumberTree.h \
4301    ../docBase/docListTable.h \
4302    ../appUtil/sioGeneral.h \
4303    docRtfWriter.h
4304
4305docRtfWriteText.o: \
4306    docRtfWriteText.c \
4307    docRtfConfig.h \
4308    ../include/appDebugon.h \
4309    ../include/appDebug.h \
4310    ../docFont/utilMatchFont.h \
4311    ../docFont/utilDocFontList.h \
4312    ../docFont/utilDocFont.h \
4313    ../utilPs/psFontInfo.h \
4314    ../appUtil/geo2DInteger.h \
4315    ../appUtil/utilIndexSet.h \
4316    ../appUtil/utilIndexMapping.h \
4317    ../appUtil/utilMemoryBuffer.h \
4318    ../textEncoding/textOfficeCharset.h \
4319    ../utilPs/psPostScriptFontList.h \
4320    ../utilPs/psFontFamily.h \
4321    ../utilPs/psFontInfo.h \
4322    ../utilPs/textAttribute.h \
4323    ../appUtil/utilPropMask.h \
4324    ../textEncoding/uniUtf8.h \
4325    ../textEncoding/textConverter.h \
4326    ../textEncoding/textConverterImpl.h \
4327    ../textEncoding/textConverter.h \
4328    docRtfWriterImpl.h \
4329    ../docBuf/docBuf.h \
4330    ../bitmap/bitmap.h \
4331    ../appUtil/utilColor.h \
4332    ../appUtil/utilPalette.h \
4333    ../appUtil/utilColor.h \
4334    ../docBase/docFramePropertiesAdmin.h \
4335    ../docBase/docFrameProperties.h \
4336    ../docBase/docPropVal.h \
4337    ../appUtil/utilIntegerValueNode.h \
4338    ../appUtil/utilNumberedPropertiesAdmin.h \
4339    ../appUtil/utilIntegerValueNode.h \
4340    ../appUtil/utilPagedList.h \
4341    ../appUtil/utilIndexSet.h \
4342    ../docBase/docStyleSheet.h \
4343    ../docBase/docStyle.h \
4344    ../docBase/docSectProperties.h \
4345    ../appUtil/utilDocumentGeometry.h \
4346    ../appUtil/utilPropMask.h \
4347    ../appUtil/geo2DInteger.h \
4348    ../docBase/docNotesProperties.h \
4349    ../docBase/docRowProperties.h \
4350    ../docBase/docCellProperties.h \
4351    ../docBase/docItemShading.h \
4352    ../docBase/docDocumentAttributeMap.h \
4353    ../docBase/docParaProperties.h \
4354    ../docBase/docParaNumber.h \
4355    ../docBase/docDocumentProperties.h \
4356    ../docFont/utilDocFontList.h \
4357    ../docBase/docListAdmin.h \
4358    ../docBase/docListTable.h \
4359    ../docBase/docListOverrideTable.h \
4360    ../docBase/docDocumentFieldList.h \
4361    ../appUtil/utilPagedList.h \
4362    ../docBuf/docDrawingShapeList.h \
4363    ../docBase/docInsertedObjectList.h \
4364    ../docBase/docObject.h \
4365    ../docBase/docLayoutPosition.h \
4366    ../docBase/docPictureProperties.h \
4367    ../docBuf/docSelect.h \
4368    ../docBase/docLayoutPosition.h \
4369    ../docBase/docSelectionScope.h \
4370    ../docBase/docEditPosition.h \
4371    ../docBase/docEditRange.h \
4372    ../docBase/docEditPosition.h \
4373    ../docBuf/docTableRectangle.h \
4374    ../docBuf/docDocumentTree.h \
4375    ../docBase/docDocumentField.h \
4376    ../docBase/docFieldInstructions.h \
4377    ../docBase/docSelectionScope.h \
4378    ../docBase/docEditRange.h \
4379    ../docBase/docListNumberTree.h \
4380    ../docBase/docListTable.h \
4381    ../appUtil/sioGeneral.h \
4382    docRtfWriter.h \
4383    docRtfFlags.h \
4384    docRtfTextConverter.h
4385
4386docRtfWriterImpl.o: \
4387    docRtfWriterImpl.c \
4388    docRtfConfig.h \
4389    ../textEncoding/textConverter.h \
4390    ../textEncoding/textConverterImpl.h \
4391    ../textEncoding/textConverter.h \
4392    ../include/appDebugon.h \
4393    ../include/appDebug.h \
4394    docRtfWriterImpl.h \
4395    ../docBuf/docBuf.h \
4396    ../bitmap/bitmap.h \
4397    ../appUtil/utilColor.h \
4398    ../appUtil/utilPalette.h \
4399    ../appUtil/utilColor.h \
4400    ../appUtil/utilMemoryBuffer.h \
4401    ../appUtil/geo2DInteger.h \
4402    ../utilPs/psPostScriptFontList.h \
4403    ../utilPs/psFontFamily.h \
4404    ../utilPs/psFontInfo.h \
4405    ../appUtil/utilIndexSet.h \
4406    ../appUtil/utilIndexMapping.h \
4407    ../docBase/docFramePropertiesAdmin.h \
4408    ../docBase/docFrameProperties.h \
4409    ../docBase/docPropVal.h \
4410    ../appUtil/utilIntegerValueNode.h \
4411    ../appUtil/utilNumberedPropertiesAdmin.h \
4412    ../appUtil/utilIntegerValueNode.h \
4413    ../appUtil/utilPagedList.h \
4414    ../appUtil/utilIndexSet.h \
4415    ../docBase/docStyleSheet.h \
4416    ../docBase/docStyle.h \
4417    ../appUtil/utilPropMask.h \
4418    ../docBase/docSectProperties.h \
4419    ../appUtil/utilDocumentGeometry.h \
4420    ../appUtil/utilPropMask.h \
4421    ../appUtil/geo2DInteger.h \
4422    ../docBase/docNotesProperties.h \
4423    ../docBase/docRowProperties.h \
4424    ../docBase/docCellProperties.h \
4425    ../docBase/docItemShading.h \
4426    ../docBase/docDocumentAttributeMap.h \
4427    ../docBase/docParaProperties.h \
4428    ../docBase/docParaNumber.h \
4429    ../utilPs/textAttribute.h \
4430    ../docBase/docDocumentProperties.h \
4431    ../docFont/utilDocFontList.h \
4432    ../docFont/utilDocFont.h \
4433    ../utilPs/psFontInfo.h \
4434    ../textEncoding/textOfficeCharset.h \
4435    ../docBase/docListAdmin.h \
4436    ../docBase/docListTable.h \
4437    ../docBase/docListOverrideTable.h \
4438    ../docBase/docDocumentFieldList.h \
4439    ../appUtil/utilPagedList.h \
4440    ../docBuf/docDrawingShapeList.h \
4441    ../docBase/docInsertedObjectList.h \
4442    ../docBase/docObject.h \
4443    ../docBase/docLayoutPosition.h \
4444    ../docBase/docPictureProperties.h \
4445    ../docBuf/docSelect.h \
4446    ../docBase/docLayoutPosition.h \
4447    ../docBase/docSelectionScope.h \
4448    ../docBase/docEditPosition.h \
4449    ../docBase/docEditRange.h \
4450    ../docBase/docEditPosition.h \
4451    ../docBuf/docTableRectangle.h \
4452    ../docBuf/docDocumentTree.h \
4453    ../docBase/docDocumentField.h \
4454    ../docBase/docFieldInstructions.h \
4455    ../docBase/docSelectionScope.h \
4456    ../docBase/docEditRange.h \
4457    ../docBase/docListNumberTree.h \
4458    ../docBase/docListTable.h \
4459    ../appUtil/sioGeneral.h \
4460    docRtfWriter.h \
4461    docRtfTextConverter.h
4462
4463