]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
scons_manifest.py: fix SCons after r26304, Enrico, please also take care of SCons...
[lyx.git] / development / scons / scons_manifest.py
1 from SCons.Util import Split
2
3 TOP_extra_files = Split('''
4     ABOUT-NLS
5     ANNOUNCE
6     COPYING
7     INSTALL
8     INSTALL.MacOSX
9     INSTALL.Win32
10     INSTALL.autoconf
11     INSTALL.cmake
12     INSTALL.scons
13     Makefile.am
14     NEWS
15     README
16     README.Cygwin
17     README.Win32
18     README.localization
19     RELEASE-NOTES
20     UPGRADING
21     autogen.sh
22     config.log
23     configure.ac
24     lyx.1in
25     rename.sh
26     scons_lyx.log
27 ''')
28
29
30 src_header_files = Split('''
31     ASpell_local.h
32     Author.h
33     BiblioInfo.h
34     Bidi.h
35     Box.h
36     BranchList.h
37     Buffer.h
38     BufferList.h
39     BufferParams.h
40     BufferView.h
41     Bullet.h
42     Changes.h
43     Chktex.h
44     Citation.h
45     CmdDef.h
46     Color.h
47     ColorCode.h
48     CompletionList.h
49     Converter.h
50     ConverterCache.h
51     CoordCache.h
52     Counters.h
53     Cursor.h
54     CursorSlice.h
55     CutAndPaste.h
56     DepTable.h
57     Dimension.h
58     DispatchResult.h
59     DocIterator.h
60     Encoding.h
61     ErrorList.h
62     Exporter.h
63     FloatList.h
64     Floating.h
65     Font.h
66     FontEnums.h
67     FontInfo.h
68     FontList.h
69     Format.h
70     FuncCode.h
71     FuncRequest.h
72     FuncStatus.h
73     Graph.h
74     ISpell.h
75     InsetIterator.h
76     InsetList.h
77     Intl.h
78     KeyMap.h
79     KeySequence.h
80     LaTeX.h
81     LaTeXFeatures.h
82     Language.h
83     Layout.h
84     LayoutEnums.h
85     LayoutFile.h
86     Length.h
87     Lexer.h
88     LyX.h
89     LyXAction.h
90     LyXFunc.h
91     LyXRC.h
92     LyXVC.h
93     MetricsInfo.h
94     ModuleList.h
95     Mover.h
96     OutputParams.h
97     ParIterator.h
98     Paragraph.h
99     ParagraphList.h
100     ParagraphMetrics.h
101     ParagraphParameters.h
102     PDFOptions.h
103     PrinterParams.h
104     PSpell.h
105     Row.h
106     Section.h
107     Server.h
108     ServerSocket.h
109     Session.h
110     Spacing.h
111     SpellBase.h
112     TexRow.h
113     Text.h
114     TextClass.h
115     TextMetrics.h
116     Thesaurus.h
117     TocBackend.h
118     Trans.h
119     Undo.h
120     VCBackend.h
121     VSpace.h
122     Variables.h
123     WordLangTuple.h
124     buffer_funcs.h
125     factory.h
126     lyxfind.h
127     output.h
128     output_docbook.h
129     output_latex.h
130     output_plaintext.h
131     paper.h
132     paragraph_funcs.h
133     rowpainter.h
134     sgml.h
135     update_flags.h
136     version.h
137     WordList.h
138 ''')
139
140
141 src_pre_files = Split('''
142     Author.cpp
143     Bidi.cpp
144     BranchList.cpp
145     Buffer.cpp
146     BufferList.cpp
147     BufferParams.cpp
148     BufferView.cpp
149     Bullet.cpp
150     Changes.cpp
151     Chktex.cpp
152     CmdDef.cpp
153     Color.cpp
154     Converter.cpp
155     ConverterCache.cpp
156     CoordCache.cpp
157     Counters.cpp
158     Cursor.cpp
159     CursorSlice.cpp
160     CutAndPaste.cpp
161     DepTable.cpp
162     DocIterator.cpp
163     Encoding.cpp
164     ErrorList.cpp
165     Exporter.cpp
166     FloatList.cpp
167     Floating.cpp
168     Font.cpp
169     FontInfo.cpp
170     FontList.cpp
171     Format.cpp
172     FuncRequest.cpp
173     FuncStatus.cpp
174     Graph.cpp
175     InsetIterator.cpp
176     InsetList.cpp
177     Intl.cpp
178     KeyMap.cpp
179     KeySequence.cpp
180     LaTeX.cpp
181     LaTeXFeatures.cpp
182     Language.cpp
183     Layout.cpp
184     LayoutFile.cpp
185     Length.cpp
186     Lexer.cpp
187     LyX.cpp
188     LyXAction.cpp
189     LyXFunc.cpp
190     LyXRC.cpp
191     LyXVC.cpp
192     MetricsInfo.cpp
193     Mover.cpp
194     OutputParams.cpp
195     PDFOptions.cpp
196     ParIterator.cpp
197     Paragraph.cpp
198     ParagraphMetrics.cpp
199     ParagraphParameters.cpp
200     Row.cpp
201     Server.cpp
202     ServerSocket.cpp
203     Session.cpp
204     Spacing.cpp
205     TexRow.cpp
206     Text.cpp
207     Text2.cpp
208     Text3.cpp
209     TextClass.cpp
210     TextMetrics.cpp
211     TocBackend.cpp
212     Trans.cpp
213     Undo.cpp
214     VCBackend.cpp
215     VSpace.cpp
216     buffer_funcs.cpp
217     factory.cpp
218     lengthcommon.cpp
219     lyxfind.cpp
220     output.cpp
221     output_docbook.cpp
222     output_latex.cpp
223     output_plaintext.cpp
224     paragraph_funcs.cpp
225     rowpainter.cpp
226     sgml.cpp
227     version.cpp
228     WordList.cpp
229 ''')
230
231
232 src_post_files = Split('''
233     BiblioInfo.cpp
234     Box.cpp
235     Dimension.cpp
236     ModuleList.cpp
237     PrinterParams.cpp
238     SpellBase.cpp
239     Thesaurus.cpp
240     boost.cpp
241 ''')
242
243
244 src_extra_src_files = Split('''
245     ASpell.cpp
246     ISpell.cpp
247     PSpell.cpp
248     Section.cpp
249     Variables.cpp
250     main.cpp
251 ''')
252
253
254 src_extra_files = Split('''
255     Makefile.am
256     pch.h
257 ''')
258
259
260 src_client_header_files = Split('''
261     Messages.h
262 ''')
263
264
265 src_client_files = Split('''
266     Messages.cpp
267     boost.cpp
268     client.cpp
269     gettext.cpp
270 ''')
271
272
273 src_client_extra_files = Split('''
274     Makefile.am
275     lyxclient.man
276     pch.h
277 ''')
278
279
280 src_support_header_files = Split('''
281     ExceptionMessage.h
282     FileMonitor.h
283     FileName.h
284     ForkedCalls.h
285     Messages.h
286     Package.h
287     Path.h
288     RandomAccessList.h
289     SignalSlot.h
290     SignalSlotPrivate.h
291     Systemcall.h
292     Timeout.h
293     Translator.h
294     convert.h
295     copied_ptr.h
296     debug.h
297     docstream.h
298     docstring.h
299     docstring_list.h
300     environment.h
301     filetools.h
302     foreach.h
303     gettext.h
304     gzstream.h
305     lassert.h
306     limited_stack.h
307     lstrings.h
308     lyxalgo.h
309     lyxlib.h
310     lyxtime.h
311     os.h
312     os_win32.h
313     qstring_helpers.h
314     socktools.h
315     textutils.h
316     types.h
317     unicode.h
318     userinfo.h
319 ''')
320
321
322 src_support_files = Split('''
323     FileMonitor.cpp
324     FileName.cpp
325     ForkedCalls.cpp
326     Messages.cpp
327     Package.cpp
328     Path.cpp
329     SignalSlot.cpp
330     SignalSlotPrivate.cpp
331     Systemcall.cpp
332     Timeout.cpp
333     convert.cpp
334     debug.cpp
335     docstream.cpp
336     docstring.cpp
337     environment.cpp
338     filetools.cpp
339     gettext.cpp
340     gzstream.cpp
341     kill.cpp
342     lassert.cpp
343     lstrings.cpp
344     lyxsum.cpp
345     lyxtime.cpp
346     os.cpp
347     qstring_helpers.cpp
348     socktools.cpp
349     unicode.cpp
350     userinfo.cpp
351 ''')
352
353
354 src_support_extra_header_files = Split('''
355     
356 ''')
357
358
359 src_support_extra_src_files = Split('''
360     atexit.c
361     os_cygwin.cpp
362     os_unix.cpp
363     os_win32.cpp
364     strerror.c
365 ''')
366
367
368 src_support_extra_files = Split('''
369     Makefile.am
370     pch.h
371 ''')
372
373
374 src_support_tests_extra_files = Split('''
375     Makefile.am
376     boost.cpp
377     convert.cpp
378     filetools.cpp
379     lstrings.cpp
380     pch.h
381     test_convert
382     test_filetools
383     test_lstrings
384 ''')
385
386
387 src_support_tests_regfiles_extra_files = Split('''
388     convert
389     filetools
390     lstrings
391 ''')
392
393
394 src_graphics_header_files = Split('''
395     GraphicsCache.h
396     GraphicsCacheItem.h
397     GraphicsConverter.h
398     GraphicsImage.h
399     GraphicsLoader.h
400     GraphicsParams.h
401     GraphicsTypes.h
402     PreviewImage.h
403     PreviewLoader.h
404     Previews.h
405 ''')
406
407
408 src_graphics_files = Split('''
409     GraphicsCache.cpp
410     GraphicsCacheItem.cpp
411     GraphicsConverter.cpp
412     GraphicsImage.cpp
413     GraphicsLoader.cpp
414     GraphicsParams.cpp
415     PreviewImage.cpp
416     PreviewLoader.cpp
417     Previews.cpp
418 ''')
419
420
421 src_graphics_extra_files = Split('''
422     Makefile.am
423     pch.h
424 ''')
425
426
427 src_mathed_header_files = Split('''
428     CommandInset.h
429     InsetMath.h
430     InsetMathAMSArray.h
431     InsetMathArray.h
432     InsetMathBig.h
433     InsetMathBoldSymbol.h
434     InsetMathBox.h
435     InsetMathBrace.h
436     InsetMathCases.h
437     InsetMathChar.h
438     InsetMathColor.h
439     InsetMathComment.h
440     InsetMathDecoration.h
441     InsetMathDelim.h
442     InsetMathDiff.h
443     InsetMathDots.h
444     InsetMathEnsureMath.h
445     InsetMathEnv.h
446     InsetMathExFunc.h
447     InsetMathExInt.h
448     InsetMathFont.h
449     InsetMathFontOld.h
450     InsetMathFrac.h
451     InsetMathGrid.h
452     InsetMathHull.h
453     InsetMathKern.h
454     InsetMathLefteqn.h
455     InsetMathLim.h
456     InsetMathMatrix.h
457     InsetMathNest.h
458     InsetMathNumber.h
459     InsetMathOverset.h
460     InsetMathPar.h
461     InsetMathPhantom.h
462     InsetMathRef.h
463     InsetMathRoot.h
464     InsetMathScript.h
465     InsetMathSize.h
466     InsetMathSpace.h
467     InsetMathSplit.h
468     InsetMathSqrt.h
469     InsetMathStackrel.h
470     InsetMathString.h
471     InsetMathSubstack.h
472     InsetMathSymbol.h
473     InsetMathTabular.h
474     InsetMathUnderset.h
475     InsetMathUnknown.h
476     InsetMathXArrow.h
477     InsetMathXYMatrix.h
478     MacroTable.h
479     MathAtom.h
480     MathAutoCorrect.h
481     MathCompletionList.h
482     MathData.h
483     MathExtern.h
484     MathFactory.h
485     MathGridInfo.h
486     MathMacro.h
487     MathMacroArgument.h
488     MathMacroTemplate.h
489     MathParser.h
490     MathStream.h
491     MathSupport.h
492     ReplaceData.h
493     TextPainter.h
494 ''')
495
496
497 src_mathed_files = Split('''
498     CommandInset.cpp
499     InsetMath.cpp
500     InsetMathAMSArray.cpp
501     InsetMathArray.cpp
502     InsetMathBig.cpp
503     InsetMathBoldSymbol.cpp
504     InsetMathBox.cpp
505     InsetMathBrace.cpp
506     InsetMathCases.cpp
507     InsetMathChar.cpp
508     InsetMathColor.cpp
509     InsetMathComment.cpp
510     InsetMathDecoration.cpp
511     InsetMathDelim.cpp
512     InsetMathDiff.cpp
513     InsetMathDots.cpp
514     InsetMathEnsureMath.cpp
515     InsetMathEnv.cpp
516     InsetMathExFunc.cpp
517     InsetMathExInt.cpp
518     InsetMathFont.cpp
519     InsetMathFontOld.cpp
520     InsetMathFrac.cpp
521     InsetMathGrid.cpp
522     InsetMathHull.cpp
523     InsetMathKern.cpp
524     InsetMathLefteqn.cpp
525     InsetMathLim.cpp
526     InsetMathMatrix.cpp
527     InsetMathNest.cpp
528     InsetMathNumber.cpp
529     InsetMathOverset.cpp
530     InsetMathPar.cpp
531     InsetMathPhantom.cpp
532     InsetMathRef.cpp
533     InsetMathRoot.cpp
534     InsetMathScript.cpp
535     InsetMathSize.cpp
536     InsetMathSpace.cpp
537     InsetMathSplit.cpp
538     InsetMathSqrt.cpp
539     InsetMathStackrel.cpp
540     InsetMathString.cpp
541     InsetMathSubstack.cpp
542     InsetMathSymbol.cpp
543     InsetMathTabular.cpp
544     InsetMathUnderset.cpp
545     InsetMathUnknown.cpp
546     InsetMathXArrow.cpp
547     InsetMathXYMatrix.cpp
548     MacroTable.cpp
549     MathAtom.cpp
550     MathAutoCorrect.cpp
551     MathData.cpp
552     MathExtern.cpp
553     MathFactory.cpp
554     MathMacro.cpp
555     MathMacroArgument.cpp
556     MathMacroTemplate.cpp
557     MathParser.cpp
558     MathStream.cpp
559     MathSupport.cpp
560     TextPainter.cpp
561 ''')
562
563
564 src_mathed_extra_files = Split('''
565     BUGS
566     InsetFormulaMacro.cpp
567     InsetFormulaMacro.h
568     InsetMathMBox.cpp
569     InsetMathMBox.h
570     InsetMathXYArrow.cpp
571     InsetMathXYArrow.h
572     Makefile.am
573     README
574     pch.h
575     texify
576 ''')
577
578
579 src_tex2lyx_header_files = Split('''
580     Context.h
581     Font.h
582     Parser.h
583     Spacing.h
584     tex2lyx.h
585 ''')
586
587
588 src_tex2lyx_files = Split('''
589     Context.cpp
590     Font.cpp
591     Parser.cpp
592     boost.cpp
593     gettext.cpp
594     math.cpp
595     preamble.cpp
596     table.cpp
597     tex2lyx.cpp
598     text.cpp
599 ''')
600
601
602 src_tex2lyx_copied_header_files = Split('''
603     insets/InsetLayout.h
604 ''')
605
606
607 src_tex2lyx_copied_files = Split('''
608     Color.cpp
609     Counters.cpp
610     FloatList.cpp
611     Floating.cpp
612     Layout.cpp
613     Lexer.cpp
614     TextClass.cpp
615     insets/InsetLayout.cpp
616     lengthcommon.cpp
617 ''')
618
619
620 src_tex2lyx_extra_files = Split('''
621     Makefile.am
622     pch.h
623     test-insets.tex
624     test-structure.tex
625     test.ltx
626     tex2lyx.man
627 ''')
628
629
630 src_frontends_header_files = Split('''
631     Application.h
632     Clipboard.h
633     FontLoader.h
634     FontMetrics.h
635     KeyModifier.h
636     KeySymbol.h
637     LyXView.h
638     Painter.h
639     Selection.h
640     WorkArea.h
641     WorkAreaManager.h
642     alert.h
643     mouse_state.h
644 ''')
645
646
647 src_frontends_files = Split('''
648     WorkAreaManager.cpp
649 ''')
650
651
652 src_frontends_extra_files = Split('''
653     Makefile.am
654     pch.h
655 ''')
656
657
658 src_frontends_controllers_extra_files = Split('''
659     Makefile.am
660     pch.h
661 ''')
662
663
664 src_frontends_controllers_tests_extra_files = Split('''
665     Makefile.am
666     biblio.cpp
667     boost.cpp
668     pch.h
669     test_biblio
670 ''')
671
672
673 src_frontends_controllers_tests_regfiles_extra_files = Split('''
674     biblio
675 ''')
676
677
678 src_frontends_qt4_header_files = Split('''
679     ButtonPolicy.h
680     Dialog.h
681     Action.h
682     BulletsModule.h
683     ButtonController.h
684     ColorCache.h
685     CustomizedWidgets.h
686     DialogView.h
687     DockView.h
688     EmptyTable.h
689     FileDialog.h
690     FloatPlacement.h
691     GuiAbout.h
692     GuiApplication.h
693     GuiBibitem.h
694     GuiBibtex.h
695     GuiBox.h
696     GuiBranches.h
697     GuiBranch.h
698     GuiChanges.h
699     GuiCharacter.h
700     GuiCharacter.h
701     GuiCitation.h
702     GuiClipboard.h
703     GuiCommandBuffer.h
704     GuiCommandEdit.h
705     GuiCompleter.h
706     GuiDelimiter.h
707     GuiDialog.h
708     GuiDocument.h
709     GuiErrorList.h
710     GuiERT.h
711     GuiExternal.h
712     GuiFloat.h
713     GuiFontExample.h
714     GuiFontLoader.h
715     GuiGraphics.h
716     GuiGraphicsUi.h
717     GuiHSpace.h
718     GuiHyperlink.h
719     GuiIdListModel.h
720     GuiImage.h
721     GuiInclude.h
722     GuiInfo.h
723     GuiKeySymbol.h
724     GuiLabel.h
725     GuiListings.h
726     GuiLog.h
727     GuiMathMatrix.h
728     GuiNomencl.h
729     GuiNote.h
730     GuiPainter.h
731     GuiParagraph.h
732     GuiPrefs.h
733     GuiPrint.h
734     GuiRef.h
735     GuiSearch.h
736     GuiSelection.h
737     GuiSelectionManager.h
738     GuiSendto.h
739     GuiSetBorder.h
740     GuiShowFile.h
741     GuiSpellchecker.h
742     GuiSymbols.h
743     GuiTabularCreate.h
744     GuiTabular.h
745     GuiTexinfo.h
746     GuiThesaurus.h
747     GuiToc.h
748     GuiToolbar.h
749     GuiView.h
750     GuiViewSource.h
751     GuiVSpace.h
752     GuiWorkArea.h
753     GuiWrap.h
754     IconPalette.h
755     InsertTableWidget.h
756     LaTeXHighlighter.h
757     LengthCombo.h
758     LyXFileDialog.h
759     Menus.h
760     PanelStack.h
761     TocModel.h
762     TocWidget.h
763     Toolbars.h
764     Validator.h
765     qt_helpers.h
766     qt_i18n.h
767 ''')
768
769
770 src_frontends_qt4_files = Split('''
771     ButtonPolicy.cpp
772     Dialog.cpp
773     Action.cpp
774     BulletsModule.cpp
775     ButtonController.cpp
776     ColorCache.cpp
777     CustomizedWidgets.cpp
778     EmptyTable.cpp
779     FileDialog.cpp
780     FloatPlacement.cpp
781     GuiAbout.cpp
782     GuiAlert.cpp
783     GuiApplication.cpp
784     GuiBibitem.cpp
785     GuiBibtex.cpp
786     GuiBox.cpp
787     GuiBranch.cpp
788     GuiBranches.cpp
789     GuiChanges.cpp
790     GuiCharacter.cpp
791     GuiCitation.cpp
792     GuiClipboard.cpp
793     GuiCommandBuffer.cpp
794     GuiCommandEdit.cpp
795     GuiCompleter.cpp
796     GuiDelimiter.cpp
797     GuiDialog.cpp
798     GuiDocument.cpp
799     GuiErrorList.cpp
800     GuiERT.cpp
801     GuiExternal.cpp
802     GuiFloat.cpp
803     GuiFontExample.cpp
804     GuiFontLoader.cpp
805     GuiFontMetrics.cpp
806     GuiGraphics.cpp
807     GuiHSpace.cpp
808     GuiHyperlink.cpp
809     GuiIdListModel.cpp 
810     GuiImage.cpp
811     GuiInclude.cpp
812     GuiInfo.cpp
813     GuiKeySymbol.cpp
814     GuiLabel.cpp
815     GuiListings.cpp
816     GuiLog.cpp
817     GuiMathMatrix.cpp
818     GuiNomencl.cpp
819     GuiNote.cpp
820     GuiPainter.cpp
821     GuiParagraph.cpp
822     GuiPrefs.cpp
823     GuiPrint.cpp
824     GuiRef.cpp
825     GuiSearch.cpp
826     GuiSelection.cpp
827     GuiSelectionManager.cpp
828     GuiSendto.cpp
829     GuiSetBorder.cpp
830     GuiShowFile.cpp
831     GuiSpellchecker.cpp
832     GuiSymbols.cpp
833     GuiTabular.cpp
834     GuiTabularCreate.cpp
835     GuiTexinfo.cpp
836     GuiThesaurus.cpp
837     GuiToc.cpp
838     GuiToolbar.cpp
839     GuiView.cpp
840     GuiViewSource.cpp
841     GuiVSpace.cpp
842     GuiWorkArea.cpp
843     GuiWrap.cpp
844     IconPalette.cpp
845     InsertTableWidget.cpp
846     LengthCombo.cpp
847     LaTeXHighlighter.cpp
848     LyXFileDialog.cpp
849     Menus.cpp
850     PanelStack.cpp
851     TocModel.cpp
852     TocWidget.cpp
853     Toolbars.cpp
854     Validator.cpp
855     qt_helpers.cpp
856 ''')
857
858
859 src_frontends_qt4_extra_files = Split('''
860     GuiFontMetrics.h
861     Makefile.am
862     README
863     pch.h
864 ''')
865
866
867 src_frontends_qt4_ui_files = Split('''
868     AboutUi.ui
869     AskForTextUi.ui
870     BibitemUi.ui
871     BiblioUi.ui
872     BibtexAddUi.ui
873     BibtexUi.ui
874     BoxUi.ui
875     BranchUi.ui
876     BranchesUi.ui
877     BulletsUi.ui
878     ChangesUi.ui
879     CharacterUi.ui
880     CitationUi.ui
881     DelimiterUi.ui
882     DocumentUi.ui
883     ERTUi.ui
884     ErrorListUi.ui
885     ExternalUi.ui
886     FloatPlacementUi.ui
887     FloatUi.ui
888     FontUi.ui
889     GraphicsUi.ui
890     HSpaceUi.ui
891     HyperlinkUi.ui
892     IncludeUi.ui
893     InfoUi.ui
894     LabelUi.ui
895     LaTeXUi.ui
896     LanguageUi.ui
897     ListingsUi.ui
898     LogUi.ui
899     MarginsUi.ui
900     MathMatrixUi.ui
901     MathsUi.ui
902     NomenclUi.ui
903     NoteUi.ui
904     NumberingUi.ui
905     PageLayoutUi.ui
906     ParagraphUi.ui
907     PDFSupportUi.ui
908     PreambleUi.ui
909     PrefColorsUi.ui
910     PrefCompletionUi.ui
911     PrefConvertersUi.ui
912     PrefDateUi.ui
913     PrefDisplayUi.ui
914     PrefEditUi.ui
915     PrefFileformatsUi.ui
916     PrefIdentityUi.ui
917     PrefInputUi.ui
918     PrefLanguageUi.ui
919     PrefLatexUi.ui
920     PrefPathsUi.ui
921     PrefPlaintextUi.ui
922     PrefPrinterUi.ui
923     PrefScreenFontsUi.ui
924     PrefShortcutsUi.ui
925     PrefSpellcheckerUi.ui
926     PrefUi.ui
927     PrefsUi.ui
928     PrintUi.ui
929     RefUi.ui
930     SearchUi.ui
931     SendtoUi.ui
932     ShortcutUi.ui
933     ShowFileUi.ui
934     SpellcheckerUi.ui
935     SymbolsUi.ui
936     TabularCreateUi.ui
937     TabularUi.ui
938     TexinfoUi.ui
939     TextLayoutUi.ui
940     ThesaurusUi.ui
941     TocUi.ui
942     VSpaceUi.ui
943     ViewSourceUi.ui
944     WrapUi.ui
945 ''')
946
947
948 src_frontends_qt4_ui_extra_files = Split('''
949     Makefile.am
950     compile_uic.sh
951 ''')
952
953
954 src_insets_header_files = Split('''
955     ExternalSupport.h
956     ExternalTemplate.h
957     ExternalTransforms.h
958     Inset.h
959     InsetBibitem.h
960     InsetBibtex.h
961     InsetBox.h
962     InsetBranch.h
963     InsetCaption.h
964     InsetCitation.h
965     InsetCode.h
966     InsetCollapsable.h
967     InsetCommand.h
968     InsetCommandParams.h
969     InsetERT.h
970     InsetExternal.h
971     InsetFlex.h
972     InsetFloat.h
973     InsetFloatList.h
974     InsetFoot.h
975     InsetFootlike.h
976     InsetGraphics.h
977     InsetGraphicsParams.h
978     InsetHyperlink.h
979     InsetInclude.h
980     InsetIndex.h
981     InsetInfo.h
982     InsetLabel.h
983     InsetLayout.h
984     InsetLine.h
985     InsetListings.h
986     InsetListingsParams.h
987     InsetMarginal.h
988     InsetNewline.h
989     InsetNewpage.h
990     InsetNomencl.h
991     InsetNote.h
992     InsetOptArg.h
993     InsetQuotes.h
994     InsetRef.h
995     InsetSpace.h
996     InsetSpecialChar.h
997     InsetTOC.h
998     InsetTabular.h
999     InsetText.h
1000     InsetVSpace.h
1001     InsetWrap.h
1002     RenderBase.h
1003     RenderButton.h
1004     RenderGraphic.h
1005     RenderPreview.h
1006 ''')
1007
1008
1009 src_insets_files = Split('''
1010     ExternalSupport.cpp
1011     ExternalTemplate.cpp
1012     ExternalTransforms.cpp
1013     Inset.cpp
1014     InsetBibitem.cpp
1015     InsetBibtex.cpp
1016     InsetBox.cpp
1017     InsetBranch.cpp
1018     InsetCaption.cpp
1019     InsetCitation.cpp
1020     InsetCollapsable.cpp
1021     InsetCommand.cpp
1022     InsetCommandParams.cpp
1023     InsetERT.cpp
1024     InsetExternal.cpp
1025     InsetFlex.cpp
1026     InsetFloat.cpp
1027     InsetFloatList.cpp
1028     InsetFoot.cpp
1029     InsetFootlike.cpp
1030     InsetGraphics.cpp
1031     InsetGraphicsParams.cpp
1032     InsetHyperlink.cpp
1033     InsetInclude.cpp
1034     InsetIndex.cpp
1035     InsetInfo.cpp
1036     InsetLabel.cpp
1037     InsetLayout.cpp
1038     InsetLine.cpp
1039     InsetListings.cpp
1040     InsetListingsParams.cpp
1041     InsetMarginal.cpp
1042     InsetNewline.cpp
1043     InsetNewpage.cpp
1044     InsetNomencl.cpp
1045     InsetNote.cpp
1046     InsetOptArg.cpp
1047     InsetQuotes.cpp
1048     InsetRef.cpp
1049     InsetSpace.cpp
1050     InsetSpecialChar.cpp
1051     InsetTOC.cpp
1052     InsetTabular.cpp
1053     InsetText.cpp
1054     InsetVSpace.cpp
1055     InsetWrap.cpp
1056     RenderButton.cpp
1057     RenderGraphic.cpp
1058     RenderPreview.cpp
1059 ''')
1060
1061
1062 src_insets_extra_files = Split('''
1063     Makefile.am
1064     pch.h
1065 ''')
1066
1067
1068 intl_header_files = Split('''
1069     eval-plural.h
1070     gettextP.h
1071     gmo.h
1072     hash-string.h
1073     loadinfo.h
1074     localcharset.h
1075     os2compat.h
1076     plural-exp.h
1077     printf-args.h
1078     printf-parse.h
1079     relocatable.h
1080     vasnprintf.h
1081     vasnwprintf.h
1082     wprintf-parse.h
1083     xsize.h
1084 ''')
1085
1086
1087 intl_files = Split('''
1088     bindtextdom.c
1089     dcgettext.c
1090     dcigettext.c
1091     dcngettext.c
1092     dgettext.c
1093     dngettext.c
1094     explodename.c
1095     finddomain.c
1096     gettext.c
1097     intl-compat.c
1098     l10nflist.c
1099     langprefs.c
1100     loadmsgcat.c
1101     localcharset.c
1102     localealias.c
1103     localename.c
1104     log.c
1105     ngettext.c
1106     osdep.c
1107     plural-exp.c
1108     plural.c
1109     printf.c
1110     relocatable.c
1111     textdomain.c
1112 ''')
1113
1114
1115 intl_extra_files = Split('''
1116     VERSION
1117     config.charset
1118     libgnuintl.h.in
1119     locale.alias
1120     os2compat.c
1121     plural.y
1122     printf-args.c
1123     printf-parse.c
1124     ref-add.sin
1125     ref-del.sin
1126     vasnprintf.c
1127 ''')
1128
1129
1130 config_extra_files = Split('''
1131     Makefile.am
1132     common.am
1133     config.guess
1134     config.rpath
1135     config.sub
1136     depcomp
1137     install-sh
1138     libtool.m4
1139     ltmain.sh
1140     lyxinclude.m4
1141     missing
1142     mkinstalldirs
1143     pkg.m4
1144     py-compile
1145     qt4.m4
1146     spell.m4
1147 ''')
1148
1149
1150 sourcedoc_extra_files = Split('''
1151     Doxyfile.in
1152     Makefile.am
1153 ''')
1154
1155
1156 po_extra_files = Split('''
1157     LINGUAS
1158     Makefile.in.in
1159     Makevars
1160     POTFILES.in
1161     README
1162     Rules-quot
1163     ar.po
1164     bg.po
1165     boldquot.sed
1166     ca.po
1167     cs.po
1168     da.po
1169     de.po
1170     en@boldquot.header
1171     en@quot.header
1172     en.po
1173     es.po
1174     eu.po
1175     fi.po
1176     fr.po
1177     gl.po
1178     he.po
1179     hu.po
1180     insert-header.sin
1181     it.po
1182     ja.po
1183     ko.po
1184     lyx_pot.py
1185     nb.po
1186     nl.po
1187     nn.po
1188     pl.po
1189     pocheck.pl
1190     postats.sh
1191     pt.po
1192     quot.sed
1193     remove-potcdate.sin
1194     ro.po
1195     ru.po
1196     sk.po
1197     sl.po
1198     sv.po
1199     tr.po
1200     uk.po
1201     wa.po
1202     zh_CN.po
1203     zh_TW.po
1204 ''')
1205
1206
1207 lib_files = Split('''
1208     CREDITS
1209     chkconfig.ltx
1210     configure.py
1211     encodings
1212     external_templates
1213     languages
1214     symbols
1215     syntax.default
1216     unicodesymbols
1217 ''')
1218
1219
1220 lib_extra_files = Split('''
1221     Makefile.am
1222     autocorrect
1223     build-listerrors
1224     generate_contributions.py
1225 ''')
1226
1227
1228 lib_kbd_files = Split('''
1229     american-2.kmap
1230     american.kmap
1231     arabic.kmap
1232     bg-bds-1251.kmap
1233     brazil.kmap
1234     brazil2.kmap
1235     czech-prg.kmap
1236     czech.kmap
1237     espanol.kmap
1238     european.kmap
1239     farsi.kmap
1240     francais.kmap
1241     french.kmap
1242     german-2.kmap
1243     german-3.kmap
1244     german.kmap
1245     greek.kmap
1246     hebrew.kmap
1247     koi8-r.kmap
1248     koi8-u.kmap
1249     latvian.kmap
1250     magyar-2.kmap
1251     magyar-3.kmap
1252     magyar.kmap
1253     null.kmap
1254     polish.kmap
1255     polski.kmap
1256     portuges.kmap
1257     romanian.kmap
1258     serbian.kmap
1259     serbocroatian.kmap
1260     sf.kmap
1261     sg.kmap
1262     slovak.kmap
1263     slovene.kmap
1264     thai-kedmanee.kmap
1265     transilvanian.kmap
1266     turkish-f.kmap
1267     turkish.kmap
1268 ''')
1269
1270
1271 lib_templates_files = Split('''
1272     IEEEtran.lyx
1273     README.new_templates
1274     aa.lyx
1275     aastex.lyx
1276     agu_article.lyx
1277     apa.lyx
1278     beamer-conference-ornate-20min.lyx
1279     de_beamer-conference-ornate-20min.lyx
1280     dinbrief.lyx
1281     docbook_article.lyx
1282     elsart.lyx
1283     fr_beamer-conference-ornate-20min.lyx
1284     g-brief-de.lyx
1285     g-brief-en.lyx
1286     g-brief2.lyx
1287     hollywood.lyx
1288     ijmpc.lyx
1289     ijmpd.lyx
1290     iop-article.lyx
1291     JSS-article.lyx
1292     kluwer.lyx
1293     koma-letter2.lyx
1294     latex8.lyx
1295     letter.lyx
1296     revtex.lyx
1297     revtex4.lyx
1298     slides.lyx
1299 ''')
1300
1301
1302 lib_ui_files = Split('''
1303     classic.ui
1304     default.ui
1305     stdcontext.inc
1306     stdmenus.inc
1307     stdtoolbars.inc
1308 ''')
1309
1310
1311 lib_fonts_files = Split('''
1312     BaKoMaFontLicense.txt
1313     ReadmeBaKoMa4LyX.txt
1314     cmex10.ttf
1315     cmmi10.ttf
1316     cmr10.ttf
1317     cmsy10.ttf
1318     esint10.ttf
1319     eufm10.ttf
1320     msam10.ttf
1321     msbm10.ttf
1322     wasy10.ttf
1323 ''')
1324
1325
1326 lib_images_files = Split('''
1327     all-changes-accept.png
1328     all-changes-reject.png
1329     amssymb.png
1330     banner.png
1331     bookmark-goto.png
1332     bookmark-save.png
1333     box-insert.png
1334     break-line.png
1335     buffer-close.png
1336     buffer-export_dvi.png
1337     buffer-export_latex.png
1338     buffer-export_pdf2.png
1339     buffer-export_ps.png
1340     buffer-export_text.png
1341     buffer-new.png
1342     buffer-reload.png
1343     buffer-update_dvi.png
1344     buffer-update_pdf2.png
1345     buffer-update_ps.png
1346     buffer-view_dvi.png
1347     buffer-view_pdf2.png
1348     buffer-view_ps.png
1349     buffer-write-as.png
1350     buffer-write.png
1351     build-program.png
1352     change-accept.png
1353     change-next.png
1354     change-reject.png
1355     changes-merge.png
1356     changes-output.png
1357     changes-track.png
1358     closetab.png
1359     close-tab-group.png
1360     copy.png
1361     cut.png
1362     demote.png
1363     depth-decrement.png
1364     depth-increment.png
1365     dialog-preferences.png
1366     dialog-show-new-inset_citation.png
1367     dialog-show-new-inset_graphics.png
1368     dialog-show-new-inset_include.png
1369     dialog-show-new-inset_ref.png
1370     dialog-show_character.png
1371     dialog-show_findreplace.png
1372     dialog-show_mathdelimiter.png
1373     dialog-show_mathmatrix.png
1374     dialog-show_print.png
1375     dialog-show_spellchecker.png
1376     dialog-toggle_toc.png
1377     down.png
1378     ert-insert.png
1379     file-open.png
1380     float-insert_figure.png
1381     float-insert_table.png
1382     font-bold.png
1383     font-emph.png
1384     textstyle-apply.png
1385     font-noun.png
1386     font-sans.png
1387     footnote-insert.png
1388     href-insert.png
1389     hidetab.png
1390     index-insert.png
1391     label-insert.png
1392     layout-document.png
1393     layout-paragraph.png
1394     layout.png
1395     layout_Description.png
1396     layout_Enumerate.png
1397     layout_Itemize.png
1398     layout_List.png
1399     layout_LyX-Code.png
1400     layout_Scrap.png
1401     layout_Section.png
1402     lyx-quit.png
1403     lyx.png
1404     vc-check-in.png
1405     vc-check-out.png
1406     dialog-show_vclog.png
1407     vc-register.png
1408     vc-revert.png
1409     marginalnote-insert.png
1410     math-display.png
1411     math-macro-add-greedy-optional-param.png
1412     math-macro-add-optional-param.png
1413     math-macro-add-param.png
1414     math-macro-append-greedy-param.png
1415     math-macro-make-nonoptional.png
1416     math-macro-make-optional.png
1417     math-macro-remove-greedy-param.png
1418     math-macro-remove-optional-param.png
1419     math-macro-remove-param.png
1420     math-macro_newmacroname_newcommand.png
1421     math-matrix.png
1422     math-mode.png
1423     math-subscript.png
1424     math-superscript.png
1425     nomencl-insert.png
1426     note-insert.png
1427     note-next.png
1428     paste.png
1429     promote.png
1430     psnfss1.png
1431     psnfss2.png
1432     psnfss3.png
1433     psnfss4.png
1434     redo.png
1435     reload.png
1436     split-view_horizontal.png
1437     split-view_vertical.png
1438     standard.png
1439     tabular-feature_align-center.png
1440     tabular-feature_align-left.png
1441     tabular-feature_align-right.png
1442     tabular-feature_append-column.png
1443     tabular-feature_append-row.png
1444     tabular-feature_delete-column.png
1445     tabular-feature_delete-row.png
1446     tabular-feature_multicolumn.png
1447     tabular-feature_set-all-lines.png
1448     tabular-feature_set-longtabular.png
1449     tabular-feature_set-rotate-cell.png
1450     tabular-feature_toggle-rotate-cell.png
1451     tabular-feature_set-rotate-tabular.png
1452     tabular-feature_toggle-rotate-tabular.png
1453     tabular-feature_toggle-line-bottom.png
1454     tabular-feature_toggle-line-left.png
1455     tabular-feature_toggle-line-right.png
1456     tabular-feature_toggle-line-top.png
1457     tabular-feature_unset-all-lines.png
1458     tabular-feature_valign-bottom.png
1459     tabular-feature_valign-middle.png
1460     tabular-feature_valign-top.png
1461     tabular-insert.png
1462     thesaurus-entry.png
1463     toolbar-toggle_math.png
1464     toolbar-toggle_math_panels.png
1465     toolbar-toggle_table.png
1466     undo.png
1467     unknown.png
1468     up.png
1469     url-insert.png
1470 ''')
1471
1472
1473 lib_images_extra_files = Split('''
1474     README
1475     font-smallcaps.png
1476 ''')
1477
1478
1479 lib_images_math_files = Split('''
1480     Bbbk.png
1481     Finv.png
1482     Game.png
1483     Im.png
1484     Lleftarrow.png
1485     Lsh.png
1486     Re.png
1487     Rrightarrow.png
1488     Rsh.png
1489     Vvdash.png
1490     acute.png
1491     aleph.png
1492     alpha.png
1493     amalg.png
1494     angle.png
1495     approx.png
1496     approxeq.png
1497     asymp.png
1498     backepsilon.png
1499     backprime.png
1500     backsim.png
1501     backsimeq.png
1502     backslash.png
1503     bar.png
1504     bars.png
1505     barwedge.png
1506     because.png
1507     beta.png
1508     beth.png
1509     between.png
1510     bigcap.png
1511     bigcirc.png
1512     bigcup.png
1513     bigodot.png
1514     bigoplus.png
1515     bigotimes.png
1516     bigsqcup.png
1517     bigstar.png
1518     bigtriangledown.png
1519     bigtriangleup.png
1520     biguplus.png
1521     bigvee.png
1522     bigwedge.png
1523     blacklozenge.png
1524     blacksquare.png
1525     blacktriangle.png
1526     blacktriangledown.png
1527     blacktriangleleft.png
1528     blacktriangleright.png
1529     bot.png
1530     bowtie.png
1531     boxdot.png
1532     boxminus.png
1533     boxplus.png
1534     boxtimes.png
1535     breve.png
1536     bullet.png
1537     bumpeq.png
1538     bumpeq2.png
1539     cap.png
1540     cap2.png
1541     cases.png
1542     cdot.png
1543     cdots.png
1544     centerdot.png
1545     check.png
1546     chi.png
1547     circ.png
1548     circeq.png
1549     circlearrowleft.png
1550     circlearrowright.png
1551     circledS.png
1552     circledast.png
1553     circledcirc.png
1554     circleddash.png
1555     clubsuit.png
1556     complement.png
1557     cong.png
1558     coprod.png
1559     cup.png
1560     cup2.png
1561     curlyeqprec.png
1562     curlyeqsucc.png
1563     curlyvee.png
1564     curlywedge.png
1565     curvearrowleft.png
1566     curvearrowright.png
1567     dagger.png
1568     daleth.png
1569     dashleftarrow.png
1570     dashrightarrow.png
1571     dashv.png
1572     ddagger.png
1573     ddot.png
1574     ddots.png
1575     delim.png
1576     delta.png
1577     delta2.png
1578     diagdown.png
1579     diagup.png
1580     diamond.png
1581     diamondsuit.png
1582     digamma.png
1583     div.png
1584     divideontimes.png
1585     dot.png
1586     doteq.png
1587     doteqdot.png
1588     dotplus.png
1589     dotsint.png
1590     dotsintop.png
1591     doublebarwedge.png
1592     downarrow.png
1593     downarrow2.png
1594     downdownarrows.png
1595     downharpoonleft.png
1596     downharpoonright.png
1597     ell.png
1598     empty.png
1599     emptyset.png
1600     epsilon.png
1601     eqcirc.png
1602     eqslantgtr.png
1603     eqslantless.png
1604     equation.png
1605     equiv.png
1606     eta.png
1607     eth.png
1608     exists.png
1609     fallingdotseq.png
1610     flat.png
1611     font.png
1612     forall.png
1613     frac-square.png
1614     frac.png
1615     frown.png
1616     functions.png
1617     gamma.png
1618     gamma2.png
1619     geq.png
1620     geqq.png
1621     geqslant.png
1622     gg.png
1623     ggg.png
1624     gimel.png
1625     gnapprox.png
1626     gneq.png
1627     gneqq.png
1628     gnsim.png
1629     grave.png
1630     gtrapprox.png
1631     gtrdot.png
1632     gtreqless.png
1633     gtreqqless.png
1634     gtrless.png
1635     gtrsim.png
1636     gvertneqq.png
1637     hat.png
1638     hbar.png
1639     heartsuit.png
1640     hookleftarrow.png
1641     hookrightarrow.png
1642     hphantom.png
1643     hslash.png
1644     iiiint.png
1645     iiiintop.png
1646     iiint.png
1647     iiintop.png
1648     iint.png
1649     iintop.png
1650     imath.png
1651     in.png
1652     infty.png
1653     int.png
1654     intercal.png
1655     intop.png
1656     iota.png
1657     jmath.png
1658     kappa.png
1659     lambda.png
1660     lambda2.png
1661     langle.png
1662     lbrace.png
1663     lbrace_rbrace.png
1664     lbracket.png
1665     lbracket_rbracket.png
1666     lceil.png
1667     lceil_rceil.png
1668     ldots.png
1669     leftarrow.png
1670     leftarrow2.png
1671     leftarrowtail.png
1672     leftharpoondown.png
1673     leftharpoonup.png
1674     leftleftarrows.png
1675     leftrightarrow.png
1676     leftrightarrow2.png
1677     leftrightarrows.png
1678     leftrightharpoons.png
1679     leftrightsquigarrow.png
1680     leftthreetimes.png
1681     leq.png
1682     leqq.png
1683     leqslant.png
1684     lessapprox.png
1685     lessdot.png
1686     lesseqgtr.png
1687     lesseqqgtr.png
1688     lessgtr.png
1689     lesssim.png
1690     lfloor.png
1691     lfloor_rfloor.png
1692     ll.png
1693     llcorner.png
1694     lll.png
1695     lnapprox.png
1696     lneq.png
1697     lneqq.png
1698     lnsim.png
1699     longleftarrow.png
1700     longleftarrow2.png
1701     longleftrightarrow.png
1702     longleftrightarrow2.png
1703     longmapsto.png
1704     longrightarrow.png
1705     longrightarrow2.png
1706     looparrowleft.png
1707     looparrowright.png
1708     lozenge.png
1709     lparen.png
1710     lparen_rparen.png
1711     lrcorner.png
1712     ltimes.png
1713     lvertneqq.png
1714     mapsto.png
1715     mathbb_C.png
1716     mathbb_H.png
1717     mathbb_N.png
1718     mathbb_Q.png
1719     mathbb_R.png
1720     mathbb_Z.png
1721     mathcal_F.png
1722     mathcal_H.png
1723     mathcal_L.png
1724     mathcal_O.png
1725     mathcircumflex.png
1726     mathrm_T.png
1727     matrix.png
1728     measuredangle.png
1729     mho.png
1730     mid.png
1731     models.png
1732     mp.png
1733     mu.png
1734     multimap.png
1735     nabla.png
1736     natural.png
1737     ncong.png
1738     nearrow.png
1739     neg.png
1740     neq.png
1741     nexists.png
1742     ngeq.png
1743     ngeqq.png
1744     ngeqslant.png
1745     ngtr.png
1746     ni.png
1747     nleftarrow.png
1748     nleftarrow2.png
1749     nleftrightarrow.png
1750     nleftrightarrow2.png
1751     nleq.png
1752     nleqq.png
1753     nleqslant.png
1754     nless.png
1755     nmid.png
1756     notin.png
1757     nparallel.png
1758     nprec.png
1759     npreceq.png
1760     nrightarrow.png
1761     nrightarrow2.png
1762     nshortmid.png
1763     nshortparallel.png
1764     nsim.png
1765     nsubseteq.png
1766     nsucc.png
1767     nsucceq.png
1768     nsupseteq.png
1769     nsupseteqq.png
1770     ntriangleleft.png
1771     ntrianglelefteq.png
1772     ntriangleright.png
1773     ntrianglerighteq.png
1774     nu.png
1775     nvdash.png
1776     nvdash2.png
1777     nvdash3.png
1778     nwarrow.png
1779     odot.png
1780     oiint.png
1781     oiintop.png
1782     oint.png
1783     ointclockwise.png
1784     ointclockwiseop.png
1785     ointctrclockwise.png
1786     ointctrclockwiseop.png
1787     ointop.png
1788     omega.png
1789     omega2.png
1790     ominus.png
1791     oplus.png
1792     oslash.png
1793     otimes.png
1794     overbrace.png
1795     overleftarrow.png
1796     overleftrightarrow.png
1797     overline.png
1798     overrightarrow.png
1799     overset.png
1800     parallel.png
1801     partial.png
1802     perp.png
1803     phantom.png
1804     phi.png
1805     phi2.png
1806     pi.png
1807     pi2.png
1808     pitchfork.png
1809     pm.png
1810     prec.png
1811     precapprox.png
1812     preccurlyeq.png
1813     preceq.png
1814     precnapprox.png
1815     precnsim.png
1816     precsim.png
1817     prime.png
1818     prod.png
1819     propto.png
1820     psi.png
1821     psi2.png
1822     rangle.png
1823     rbrace.png
1824     rbracket.png
1825     rceil.png
1826     rfloor.png
1827     rho.png
1828     rightarrow.png
1829     rightarrow2.png
1830     rightarrowtail.png
1831     rightharpoondown.png
1832     rightharpoonup.png
1833     rightleftarrows.png
1834     rightleftharpoons.png
1835     rightrightarrows.png
1836     rightsquigarrow.png
1837     rightthreetimes.png
1838     risingdotseq.png
1839     root.png
1840     rparen.png
1841     rtimes.png
1842     searrow.png
1843     setminus.png
1844     sharp.png
1845     shortmid.png
1846     shortparallel.png
1847     sigma.png
1848     sigma2.png
1849     sim.png
1850     simeq.png
1851     slash.png
1852     smallfrown.png
1853     smallsetminus.png
1854     smallsmile.png
1855     smile.png
1856     space.png
1857     spadesuit.png
1858     sphericalangle.png
1859     sqcap.png
1860     sqcup.png
1861     sqiint.png
1862     sqiintop.png
1863     sqint.png
1864     sqintop.png
1865     sqrt-square.png
1866     sqrt.png
1867     sqsubset.png
1868     sqsubseteq.png
1869     sqsupset.png
1870     sqsupseteq.png
1871     square.png
1872     star.png
1873     style.png
1874     style.png
1875     sub.png
1876     subset.png
1877     subset2.png
1878     subseteq.png
1879     subseteqq.png
1880     subsetneq.png
1881     subsetneqq.png
1882     succ.png
1883     succapprox.png
1884     succcurlyeq.png
1885     succeq.png
1886     succnapprox.png
1887     succnsim.png
1888     succsim.png
1889     sum.png
1890     super.png
1891     supset.png
1892     supset2.png
1893     supseteq.png
1894     supseteqq.png
1895     supsetneq.png
1896     supsetneqq.png
1897     surd.png
1898     swarrow.png
1899     tau.png
1900     textrm_AA.png
1901     textrm_O.png
1902     therefore.png
1903     theta.png
1904     theta2.png
1905     thickapprox.png
1906     thicksim.png
1907     tilde.png
1908     times.png
1909     top.png
1910     triangle.png
1911     triangledown.png
1912     triangleleft.png
1913     trianglelefteq.png
1914     triangleq.png
1915     triangleright.png
1916     trianglerighteq.png
1917     twoheadleftarrow.png
1918     twoheadrightarrow.png
1919     ulcorner.png
1920     underbrace.png
1921     underleftarrow.png
1922     underleftrightarrow.png
1923     underline.png
1924     underrightarrow.png
1925     underscore.png
1926     underset.png
1927     uparrow.png
1928     uparrow2.png
1929     updownarrow.png
1930     updownarrow2.png
1931     upharpoonleft.png
1932     upharpoonright.png
1933     uplus.png
1934     upsilon.png
1935     upsilon2.png
1936     upuparrows.png
1937     urcorner.png
1938     varepsilon.png
1939     varkappa.png
1940     varnothing.png
1941     varphi.png
1942     varpi.png
1943     varpropto.png
1944     varrho.png
1945     varsigma.png
1946     varsubsetneq.png
1947     varsubsetneqq.png
1948     varsupsetneq.png
1949     varsupsetneqq.png
1950     vartheta.png
1951     vartriangle.png
1952     vartriangleleft.png
1953     vartriangleright.png
1954     vdash.png
1955     vdash2.png
1956     vdash3.png
1957     vdots.png
1958     vec.png
1959     vee.png
1960     veebar.png
1961     vert.png
1962     vert2.png
1963     vphantom.png
1964     wedge.png
1965     widehat.png
1966     widetilde.png
1967     wp.png
1968     wr.png
1969     xi.png
1970     xi2.png
1971     zeta.png
1972 ''')
1973
1974
1975 lib_images_math_extra_files = Split('''
1976     ams_arrows.png
1977     ams_misc.png
1978     ams_nrel.png
1979     ams_ops.png
1980     ams_rel.png
1981     arrows.png
1982     bop.png
1983     brel.png
1984     deco.png
1985     deco.png
1986     delim.png
1987     delim0.png
1988     delim1.png
1989     dots.png
1990     font.png
1991     functions.png
1992     greek.png
1993     misc.png
1994     varsz.png
1995 ''')
1996
1997
1998 lib_images_commands_files = Split('''
1999 ''')
2000
2001
2002 lib_images_attic_extra_files = Split('''
2003     dialog-show_mathpanel.png
2004 ''')
2005
2006
2007 lib_tex_files = Split('''
2008     broadway.cls
2009     hollywood.cls
2010     lyxchess.sty
2011     lyxskak.sty
2012     revtex.cls
2013 ''')
2014
2015
2016 lib_doc_files = Split('''
2017     Customization.lyx
2018     DocStyle.lyx
2019     DummyDocument1.lyx
2020     DummyDocument2.lyx
2021     DummyTextDocument.txt
2022     EmbeddedObjects.lyx
2023     Extended.lyx
2024     FAQ.lyx
2025     Formula-numbering.lyx
2026     Intro.lyx
2027     LaTeXConfig.lyx
2028     LFUNs.lyx
2029     Math.lyx
2030     Shortcuts.lyx
2031     Tutorial.lyx
2032     UserGuide.lyx
2033 ''')
2034
2035
2036 lib_doc_biblio_files = Split('''
2037     alphadin.bst
2038     LyXDocs.bib
2039 ''')
2040
2041
2042 lib_doc_clipart_files = Split('''
2043     Abstract.pdf
2044     BoxInsetDefaultQt4.png
2045     ChangesToolbar.png
2046     ChildDocumentQt4.png
2047     CommentNoteImageQt4.png
2048     ERT.png
2049     ExternalMaterialQt4.png
2050     ExtraToolbar.png
2051     GreyedOutNoteImageQt4.png
2052     LaTeX.png
2053     LyXNoteImageQt4.png
2054     SpaceMarker.png
2055     StandardToolbar.png
2056     ToolbarEnvBox.png
2057     endnotes.pdf
2058     escher-lsd.eps
2059     floatQt4.png
2060     footnoteQt4.png
2061     labelQt4.png
2062     macrobox.png
2063     macrouse.png
2064     mbox.png
2065     mobius.eps
2066     platypus.eps
2067     referenceQt4.png
2068     ViewToolbar.png
2069     with_fntright.pdf
2070     without_fntright.pdf
2071 ''')
2072
2073
2074 lib_doc_extra_files = Split('''
2075     Makefile.am
2076     Makefile.depend
2077     README.Documentation
2078     depend.py
2079     doc_toc.py
2080 ''')
2081
2082
2083 lib_doc_ca_files = Split('''
2084     Intro.lyx
2085 ''')
2086
2087
2088 lib_doc_cs_files = Split('''
2089     Tutorial.lyx
2090 ''')
2091
2092
2093 lib_doc_de_files = Split('''
2094     Customization.lyx
2095     DummyDocument1.lyx
2096     DummyDocument2.lyx
2097     DummyTextDocument.txt
2098     EmbeddedObjects.lyx
2099     Extended.lyx
2100     FAQ.lyx
2101     Formelnummerierung.lyx
2102     Intro.lyx
2103     Math.lyx
2104     Shortcuts.lyx
2105     Tutorial.lyx
2106     UserGuide.lyx
2107 ''')
2108
2109
2110 lib_doc_de_clipart_files = Split('''
2111     ERT.png
2112     ExternesMaterialQt4.png
2113     FussnoteQt4.png
2114     GleitobjektQt4.png
2115     GrauschriftNotizQt4.png
2116     KommentarQt4.png
2117     LyXNotizQt4.png
2118     Marke.png
2119     Querverweis.png
2120     StandardBoxQt4.png
2121     UnterdokumentQt4.png
2122 ''')
2123
2124
2125 lib_doc_da_files = Split('''
2126     Intro.lyx
2127 ''')
2128
2129
2130 lib_doc_es_files = Split('''
2131     DocumentoPostizo1.lyx
2132     DocumentoPostizo2.lyx
2133     DocumentoTextoPostizo.txt
2134     EmbeddedObjects.lyx
2135     Extended.lyx
2136     FAQ.lyx
2137     Formula-numbering.lyx
2138     Intro.lyx
2139     Math.lyx
2140     Tutorial.lyx
2141     UserGuide.lyx
2142 ''')
2143
2144
2145 lib_doc_es_clipart_files = Split('''
2146     ComentNotaImagenQt4.png
2147     CuadroMinipagQt4.png
2148     DocumentoHijoQt4.png
2149     GrisNotaImagenQt4.png
2150     MaterialExternoQt4.png
2151     NotaLyXImagenQt4.png
2152     Resumen.pdf
2153     es_ERT.png
2154     es_ToolbarEnvBox.png
2155     etiquetaQt4.png
2156     flotanteQt4.png
2157     notapieQt4.png
2158     referenciaQt4.png
2159 ''')
2160
2161
2162 lib_doc_eu_files = Split('''
2163     Customization.lyx
2164     Extended.lyx
2165     FAQ.lyx
2166     Intro.lyx
2167     Tutorial.lyx
2168     UserGuide.lyx
2169 ''')
2170
2171
2172 lib_doc_fr_files = Split('''
2173     Customization.lyx
2174     DocumentBidon1.lyx
2175     DocumentBidon2.lyx
2176     DocumentTexteBidon.txt
2177     EmbeddedObjects.lyx
2178     Extended.lyx
2179     FAQ.lyx
2180     Formula-numbering.lyx
2181     Intro.lyx
2182     Math.lyx
2183     Tutorial.lyx
2184     UserGuide.lyx
2185 ''')
2186
2187
2188 lib_doc_fr_clipart_files = Split('''
2189     BoxInsetDefaultQt4.png
2190     ChildDocumentQt4.png
2191     CommentNoteImageQt4.png
2192     GreyedOutNoteImageQt4.png
2193     LyXNoteImageQt4.png
2194     floatQt4.png
2195     footnoteQt4.png
2196     labelQt4.png
2197 ''')
2198
2199
2200 lib_doc_gl_extra_files = Split('''
2201     Intro.lyx
2202     Tutorial.lyx
2203 ''')
2204
2205
2206 lib_doc_he_files = Split('''
2207     Intro.lyx
2208     Tutorial.lyx
2209 ''')
2210
2211
2212 lib_doc_hu_files = Split('''
2213     Intro.lyx
2214     Tutorial.lyx
2215 ''')
2216
2217
2218 lib_doc_it_files = Split('''
2219     Customization.lyx
2220     Intro.lyx
2221     Tutorial.lyx
2222     UserGuide.lyx
2223 ''')
2224
2225
2226 lib_doc_it_clipart_files = Split('''
2227     it_footnoteQt4.png
2228     it_referenceQt4.png
2229 ''')
2230
2231
2232 lib_doc_ja_files = Split('''
2233     FAQ.lyx
2234     Intro.lyx
2235     LaTeXConfig.lyx
2236     Shortcuts.lyx
2237     Tutorial.lyx
2238 ''')
2239
2240
2241 lib_doc_ja_clipart_files = Split('''
2242     footnoteQt4.png
2243     referenceQt4.png
2244 ''')
2245
2246
2247 lib_doc_nb_files = Split('''
2248     Intro.lyx
2249 ''')
2250
2251
2252 lib_doc_nl_files = Split('''
2253     Intro.lyx
2254     Tutorial.lyx
2255 ''')
2256
2257
2258 lib_doc_pl_files = Split('''
2259     Extended.lyx
2260     Intro.lyx
2261     Tutorial.lyx
2262 ''')
2263
2264
2265 lib_doc_pt_files = Split('''
2266     Intro.lyx
2267     Tutorial.lyx
2268 ''')
2269
2270
2271 lib_doc_ro_files = Split('''
2272     Intro.lyx
2273 ''')
2274
2275
2276 lib_doc_ru_files = Split('''
2277     FAQ.lyx
2278     Intro.lyx
2279     Tutorial.lyx
2280 ''')
2281
2282
2283 lib_doc_sl_files = Split('''
2284     Intro.lyx
2285     Tutorial.lyx
2286 ''')
2287
2288
2289 lib_doc_sk_files = Split('''
2290     Tutorial.lyx
2291     UserGuide.lyx
2292 ''')
2293
2294
2295 lib_doc_sv_files = Split('''
2296     Intro.lyx
2297     Tutorial.lyx
2298 ''')
2299
2300
2301 lib_doc_uk_files = Split('''
2302     Intro.lyx
2303 ''')
2304
2305
2306 lib_doc_uk_clipart_files = Split('''
2307     FootnoteQT4.png
2308 ''')
2309
2310
2311 lib_examples_files = Split('''
2312     Braille.lyx
2313     CV-image.eps
2314     CV-image.png
2315     Foils.lyx
2316     ItemizeBullets.lyx
2317     Literate.lyx
2318     Minipage.lyx
2319     aa_sample.lyx
2320     aas_sample.lyx
2321     addressExample.adr
2322     amsart-test.lyx
2323     amsbook-test.lyx
2324     armenian-article.lyx
2325     beamer-g4-mask.jpg
2326     beamer-g4.jpg
2327     beamer-icsi-logo.pdf
2328     beamer-knight1-mask.png
2329     beamer-knight1.png
2330     beamer-knight2-mask.png
2331     beamer-knight2.png
2332     beamer-knight3-mask.png
2333     beamer-knight3.png
2334     beamer-knight4-mask.png
2335     beamer-knight4.png
2336     beamerlyxexample1.lyx
2337     biblioExample.bib
2338     chess-article.lyx
2339     chessgame.lyx
2340     docbook_article.lyx
2341     europeCV.lyx
2342     example_lyxified.lyx
2343     example_raw.lyx
2344     iecc05.fen
2345     iecc07.fen
2346     iecc12.fen
2347     landslide.lyx
2348     linguistics.lyx
2349     listerrors.lyx
2350     listings.lyx
2351     modernCV.lyx
2352     multicol.lyx
2353     noweb2lyx.lyx
2354     powerdot-example.lyx
2355     script_form.lyx
2356     serial_letter1.lyx
2357     serial_letter2.lyx
2358     serial_letter3.lyx
2359     simplecv.lyx
2360     splash.lyx
2361 ''')
2362
2363
2364 lib_examples_ca_files = Split('''
2365     ItemizeBullets.lyx
2366     mathed.lyx
2367     splash.lyx
2368 ''')
2369
2370
2371 lib_examples_cs_files = Split('''
2372     splash.lyx
2373 ''')
2374
2375
2376 lib_examples_da_files = Split('''
2377     splash.lyx
2378 ''')
2379
2380
2381 lib_examples_de_files = Split('''
2382     Dezimal.lyx
2383     ItemizeBullets.lyx
2384     Lebenslauf.lyx
2385     Minipage.lyx
2386     beispiel_gelyxt.lyx
2387     beispiel_roh.lyx
2388     multicol.lyx
2389     serienbrief1.lyx
2390     serienbrief2.lyx
2391     serienbrief3.lyx
2392     splash.lyx
2393 ''')
2394
2395
2396 lib_examples_fa_files = Split('''
2397     splash.lyx
2398 ''')
2399
2400
2401 lib_examples_fr_files = Split('''
2402     AlignementDecimal.lyx
2403     Foils.lyx
2404     ListesPuces.lyx
2405     Minipage.lyx
2406     exemple_brut.lyx
2407     exemple_lyxifie.lyx
2408     multicol.lyx
2409     simplecv.lyx
2410     splash.lyx
2411 ''')
2412
2413
2414 lib_examples_es_files = Split('''
2415     ItemizeBullets.lyx
2416     ejemplo_con_lyx.lyx
2417     ejemplo_sin_lyx.lyx
2418     splash.lyx
2419 ''')
2420
2421
2422 lib_examples_eu_files = Split('''
2423     adibide_gordina.lyx
2424     adibide_lyx-atua.lyx
2425     splash.lyx
2426 ''')
2427
2428
2429 lib_examples_gl_extra_files = Split('''
2430     exemplo_bruto.lyx
2431     exemplo_lyxificado.lyx
2432     splash.lyx
2433 ''')
2434
2435
2436 lib_examples_he_files = Split('''
2437     example_lyxified.lyx
2438     example_raw.lyx
2439     splash.lyx
2440 ''')
2441
2442
2443 lib_examples_hu_files = Split('''
2444     example_lyxified.lyx
2445     example_raw.lyx
2446     splash.lyx
2447 ''')
2448
2449
2450 lib_examples_it_files = Split('''
2451     ItemizeBullets.lyx
2452     splash.lyx
2453 ''')
2454
2455
2456 lib_examples_ja_files = Split('''
2457     splash.lyx
2458 ''')
2459
2460
2461 lib_examples_nl_files = Split('''
2462     multicol.lyx
2463     opsommingstekens.lyx
2464     splash.lyx
2465     voorbeeld_ruw.lyx
2466     voorbeeld_verlyxt.lyx
2467 ''')
2468
2469
2470 lib_examples_pl_files = Split('''
2471     splash.lyx
2472 ''')
2473
2474
2475 lib_examples_pt_files = Split('''
2476     splash.lyx
2477 ''')
2478
2479
2480 lib_examples_ro_files = Split('''
2481     splash.lyx
2482 ''')
2483
2484
2485 lib_examples_ru_files = Split('''
2486     splash.lyx
2487 ''')
2488
2489
2490 lib_examples_sl_files = Split('''
2491     primer_lyxan.lyx
2492     primer_surov.lyx
2493     splash.lyx
2494 ''')
2495
2496
2497 lib_lyx2lyx_files = Split('''
2498     LyX.py
2499     generate_encoding_info.py
2500     lyx2lyx
2501     lyx2lyx_lang.py
2502     lyx_0_06.py
2503     lyx_0_08.py
2504     lyx_0_10.py
2505     lyx_0_12.py
2506     lyx_1_0.py
2507     lyx_1_1.py
2508     lyx_1_1_5.py
2509     lyx_1_1_6_0.py
2510     lyx_1_1_6_3.py
2511     lyx_1_2.py
2512     lyx_1_3.py
2513     lyx_1_4.py
2514     lyx_1_5.py
2515     lyx_1_6.py
2516     parser_tools.py
2517     profiling.py
2518     test_parser_tools.py
2519 ''')
2520
2521
2522 lib_lyx2lyx_extra_files = Split('''
2523     Makefile.am
2524     lyx2lyx_version.py.in
2525 ''')
2526
2527
2528 lib_layouts_files = Split('''
2529     IEEEtran.layout
2530     aa.layout
2531     aapaper.layout
2532     aastex.layout
2533     agu-dtd.layout
2534     agums.layout
2535     amsart.layout
2536     amsbook.layout
2537     apa.layout
2538     arab-article.layout
2539     armenian-article.layout
2540     article.layout
2541     article-beamer.layout
2542     beamer.layout
2543     book.layout
2544     broadway.layout
2545     chess.layout
2546     cl2emult.layout
2547     dinbrief.layout
2548     docbook-book.layout
2549     docbook-chapter.layout
2550     docbook-section.layout
2551     docbook.layout
2552     dtk.layout
2553     egs.layout
2554     elsart.layout
2555     entcs.layout
2556     europecv.layout
2557     extarticle.layout
2558     extbook.layout
2559     extletter.layout
2560     extreport.layout
2561     foils.layout
2562     g-brief-de.layout
2563     g-brief-en.layout
2564     g-brief2.layout
2565     heb-article.layout
2566     heb-letter.layout
2567     hollywood.layout
2568     ijmpc.layout
2569     ijmpd.layout
2570     iopart.layout
2571     isprs.layout
2572     jarticle.layout
2573     jbook.layout
2574     jgrga.layout
2575     jreport.layout
2576     jsarticle.layout
2577     jsbook.layout
2578     jss.layout
2579     kluwer.layout
2580     latex8.layout
2581     letter.layout
2582     literate-article.layout
2583     literate-book.layout
2584     literate-report.layout
2585     llncs.layout
2586     ltugboat.layout
2587     manpage.layout
2588     memoir.layout
2589     moderncv.layout
2590     mwart.layout
2591     mwbk.layout
2592     mwrep.layout
2593     paper.layout
2594     powerdot.layout
2595     report.layout
2596     revtex.layout
2597     revtex4.layout
2598     scrartcl.layout
2599     scrarticle-beamer.layout
2600     scrbook.layout
2601     scrlettr.layout
2602     scrlttr2.layout
2603     scrreprt.layout
2604     seminar.layout
2605     siamltex.layout
2606     simplecv.layout
2607     singlecol.layout
2608     slides.layout
2609     spie.layout
2610     svglobal.layout
2611     svglobal3.layout
2612     svjog.layout
2613     svprobth.layout
2614     tarticle.layout
2615     tbook.layout
2616     treport.layout
2617 ''')
2618
2619
2620 lib_layouts_inc_files = Split('''
2621     aapaper.inc
2622     agu_stdclass.inc
2623     agu_stdcounters.inc
2624     agu_stdlists.inc
2625     agu_stdsections.inc
2626     agu_stdtitle.inc
2627     aguplus.inc
2628     amsdefs.inc
2629     db_lyxmacros.inc
2630     db_stdcharstyles.inc
2631     db_stdclass.inc
2632     db_stdcounters.inc
2633     db_stdlayouts.inc
2634     db_stdlists.inc
2635     db_stdsections.inc
2636     db_stdstarsections.inc
2637     db_stdstruct.inc
2638     db_stdtitle.inc
2639     literate-scrap.inc
2640     lyxmacros.inc
2641     numarticle.inc
2642     numreport.inc
2643     numrevtex.inc
2644     scrclass.inc
2645     stdcharstyles.inc
2646     stdclass.inc
2647     stdcounters.inc
2648     stdcustom.inc
2649     stdfloats.inc
2650     stdinsets.inc
2651     stdlayouts.inc
2652     stdletter.inc
2653     stdlists.inc
2654     stdsections.inc
2655     stdstarsections.inc
2656     stdstruct.inc
2657     stdtitle.inc
2658     svjour.inc
2659     theorems.inc
2660     theorems-ams.inc
2661     theorems-order.inc
2662     theorems-proof.inc
2663     theorems-starred.inc
2664     theorems-starred-equivalents.inc
2665 ''')
2666
2667
2668 lib_layouts_module_files = Split('''
2669     braille.module
2670     endnotes.module
2671     foottoend.module
2672     hanging.module
2673     linguistics.module
2674     logicalmkup.module
2675     minimalistic.module
2676     theorems-ams-extended.module
2677     theorems-ams.module
2678     theorems-chap.module
2679     theorems-sec.module
2680     theorems-starred.module
2681     theorems-std.module
2682 ''')
2683
2684 lib_scripts_files = Split('''
2685     TeXFiles.py
2686     clean_dvi.py
2687     convertDefault.py
2688     csv2lyx.py
2689     date.py
2690     ext_copy.py
2691     fen2ascii.py
2692     fig2pdftex.py
2693     fig2pstex.py
2694     fig_copy.py
2695     layout2layout.py
2696     legacy_lyxpreview2ppm.py
2697     listerrors
2698     lyxpreview2bitmap.py
2699     lyxpreview-platex2bitmap.py
2700     lyxpreview_tools.py
2701     tex_copy.py
2702 ''')
2703
2704
2705 lib_bind_files = Split('''
2706     aqua.bind
2707     broadway.bind
2708     cua.bind
2709     cyrkeys.bind
2710     emacs.bind
2711     greekkeys.bind
2712     hollywood.bind
2713     latinkeys.bind
2714     mac.bind
2715     math.bind
2716     menus.bind
2717     sciword.bind
2718     site.bind
2719     xemacs.bind
2720 ''')
2721
2722
2723 lib_bind_fi_files = Split('''
2724     menus.bind
2725 ''')
2726
2727
2728 lib_bind_sv_files = Split('''
2729     menus.bind
2730 ''')
2731
2732
2733 lib_bind_pt_files = Split('''
2734     menus.bind
2735 ''')
2736
2737
2738 lib_bind_de_files = Split('''
2739     menus.bind
2740 ''')
2741
2742
2743 lib_commands_files = Split('''
2744     default.def
2745 ''')
2746
2747
2748 boost_extra_files = Split('''
2749     LICENSE_1_0.txt
2750     Makefile.am
2751 ''')
2752
2753
2754 boost_libs_extra_files = Split('''
2755     Makefile.am
2756     README
2757 ''')
2758
2759
2760 boost_libs_signals_extra_files = Split('''
2761     Makefile.am
2762     signals.vcproj
2763 ''')
2764
2765
2766 boost_libs_signals_src_files = Split('''
2767     connection.cpp
2768     named_slot_map.cpp
2769     signal_base.cpp
2770     slot.cpp
2771     trackable.cpp
2772 ''')
2773
2774
2775 boost_libs_signals_src_extra_files = Split('''
2776     Makefile.am
2777     pch.h
2778 ''')
2779
2780
2781 boost_libs_regex_extra_files = Split('''
2782     Makefile.am
2783     regex.vcproj
2784 ''')
2785
2786
2787 boost_libs_regex_src_files = Split('''
2788     c_regex_traits.cpp
2789     cpp_regex_traits.cpp
2790     cregex.cpp
2791     fileiter.cpp
2792     instances.cpp
2793     posix_api.cpp
2794     regex.cpp
2795     regex_debug.cpp
2796     regex_raw_buffer.cpp
2797     regex_traits_defaults.cpp
2798     w32_regex_traits.cpp
2799     wide_posix_api.cpp
2800     winstances.cpp
2801 ''')
2802
2803
2804 boost_libs_regex_src_extra_files = Split('''
2805     Makefile.am
2806     pch.h
2807 ''')
2808
2809
2810
2811 development_Win32_packaging_installer = Split('''
2812     license.rtf
2813     lyx.nsi
2814     settings.nsh
2815 ''')
2816
2817
2818 development_Win32_packaging_installer_graphics = Split('''
2819     header.bmp
2820     wizard.bmp
2821 ''')
2822
2823
2824 development_Win32_packaging_installer_gui = Split('''
2825     external.nsh
2826     langselect.nsh
2827     reinstall.nsh
2828 ''')
2829
2830
2831 development_Win32_packaging_installer_include = Split('''
2832     declarations.nsh
2833     detection.nsh
2834     dictlist.nsh    
2835     filelist.nsh
2836     gui.nsh
2837     init.nsh
2838     langlist.nsh
2839     nsis.nsh
2840     variables.nsh
2841 ''')
2842
2843
2844 development_Win32_packaging_installer_lang = Split('''
2845     english.nsh
2846     french.nsh
2847     german.nsh
2848     italian.nsh
2849 ''')
2850
2851
2852 development_Win32_packaging_installer_setup = Split('''
2853     configure.nsh
2854     install.nsh
2855     reinstall.nsh
2856 ''')