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