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