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