home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lyx-0.13.2.tar.gz / lyx-0.13.2.tar / lyx-0.13.2 / src / Makefile.in < prev    next >
Makefile  |  1998-04-23  |  39KB  |  710 lines

  1. ###/* This file is part of
  2. ###* ======================================================
  3. ###*
  4. ###*           LyX, the High Level Word Processor
  5. ###*
  6. ###*           Copyright (C) 1995 Matthias Ettrich
  7. ###*           Copyright (C) 1995-1998 The LyX Team
  8. ###*
  9. ###*======================================================*/
  10. ###
  11. ###
  12. ### Makefile by Jean-Marc Lasgouttes (Jean-Marc.Lasgouttes@inria.fr)
  13. ###  
  14.  
  15.  
  16. # Common autoconf directories
  17. prefix = @prefix@
  18. exec_prefix = @exec_prefix@
  19. srcdir = @srcdir@
  20. top_srcdir = @top_srcdir@
  21. top_builddir= ..
  22. bindir = @bindir@
  23. datadir = @datadir@
  24. mandir = @mandir@
  25. program_suffix = @program_suffix@
  26. localedir = $(datadir)/locale
  27.  
  28. # These are needed for the bindist target
  29. absbuilddir=@absbuilddir@/src
  30. abssrcdir=@abstopsrcdir@/src
  31.  
  32. # The name to use to install LyX
  33. PACKAGE = @PACKAGE@
  34. VERSION = @VERSION@
  35. PROGEXT = @PROGEXT@
  36. LYX_BINNAME = $(PACKAGE)$(PROGEXT)
  37. bindistdir = ../$(PACKAGE)-$(VERSION)-bin
  38. distdir = $(PACKAGE)-$(VERSION)
  39.  
  40. # For all LyX support files
  41. LYX_DIR = $(datadir)/$(PACKAGE)
  42.  
  43. # C++ compiler and flags (you may replace CXXFLAGS by `-O2' if you want 
  44. # a faster executable without debug information. This can also be done
  45. # by setting the CXXFLAGS environment variable before running configure. 
  46. CXX = @CXX@
  47. CXXFLAGS = @CXXFLAGS@
  48.  
  49. # Libraries for linking and flags for the C preprocessor. If you need to
  50. # modify this to compile LyX, please send a bug report so that we can 
  51. # improve configure.
  52. LYX_LIBS = @LYX_LIBS@
  53. LIBS = @INTLLIBS@ $(LYX_LIBS) @LIBS@ 
  54. LDFLAGS = @LDFLAGS@
  55. CPPFLAGS = -I. -I${srcdir} -I${top_srcdir}/images @CPPFLAGS@
  56.  
  57.  
  58. ###################################################################
  59. # You should not need to change anything below this line.
  60.  
  61. # for multiple architectures compilation
  62. VPATH = @srcdir@
  63.  
  64. # The GNU coding standards recommends this. Don't ask me why...
  65. SHELL = /bin/sh
  66. .SUFFIXES:
  67. .SUFFIXES: .C .o
  68. @SET_MAKE@
  69.  
  70. # Various commands
  71. CXX_COMMAND = @CXX_COMMAND@
  72. FIND = find
  73. ETAGS = etags
  74. MKINSTALLDIRS = $(srcdir)/config/mkinstalldirs
  75. INSTALL = @INSTALL@
  76. INSTALL_DATA = @INSTALL_DATA@
  77. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  78. RM = rm -f
  79. LN = ln -s
  80. MANSUFFIX = 1
  81.  
  82. SRCS =  main.C lyx_main.C lyx_gui.C lyx.C lyx_cb.C lyxfr0.C lyxfr1.C \
  83.     inset.C lyxfont.C \
  84.         texrow.C paragraph.C layout.C screen.C text.C text2.C \
  85.         spellchecker.C kbmap.C bmtable.C math_symbols.C procMgr.C \
  86.         lyxfunc.C credits.C menus.C intl.C form1.C insetfig.C \
  87.         credits_form.C layout_forms.C print_form.C math_macro.C \
  88.         figinset.C toolbar.C formula.C math_hash.C math_inset.C \
  89.         math_parser.C math_write.C math_draw.C latexoptions.C texoptions.C \
  90.         table.C buffer.C lastfiles.C sp_form.C lyx_sty.C figlist.C \
  91.         math_panel.C math_iter.C lyxrc.C lyxlex.C combox.C gsqueue.C \
  92.         minibuffer.C math_delim.C math_forms.C math_cursor.C math_utils.C \
  93.         lyx_sendfax.C lyx_sendfax_main.C LString.C bufferparams.C \
  94.         filetools.C filedlg.C error.C insetquotes.C toolbarbackend.C \
  95.     BufferView.C Spacing.C PaperLayout.C insetref.C \
  96.     insetlatexaccent.C insetinfo.C inseterror.C \
  97.     insetlabel.C bufferlist.C lyx_gui_misc.C vspace.C LaTeX.C \
  98.     LyXView.C FileInfo.C insetcommand.C insetbib.C insetindex.C \
  99.     LyXAction.C lyxsum.C DepTable.C lyxserver.C LaTeXLog.C \
  100.     formulamacro.C insetinclude.C syscall.C syscontr.C syssingleton.C \
  101.     TableLayout.C insettoc.C insetlof.C insetlot.C lyxdraw.C \
  102.     LaTeXFeatures.C lyxvc.C trans.C tex-strings.C tex-accent.C \
  103.     ParagraphExtra.C FontInfo.C FontLoader.C insetparent.C \
  104.     LyXSendto.C Bullet.C bullet_forms.C bullet_forms_cb.C insetloa.C \
  105.     trans_mgr.C chset.C Chktex.C insetspecialchar.C lyxlookup.C
  106.  
  107. OBJS =  main.o lyx_main.o lyx_gui.o lyx.o lyx_cb.o lyxfr0.o lyxfr1.o \
  108.     inset.o lyxfont.o \
  109.         texrow.o paragraph.o layout.o screen.o text.o text2.o \
  110.         spellchecker.o kbmap.o bmtable.o math_symbols.o procMgr.o \
  111.         lyxfunc.o credits.o menus.o intl.o form1.o insetfig.o \
  112.         credits_form.o layout_forms.o print_form.o math_macro.o \
  113.         figinset.o toolbar.o formula.o math_hash.o math_inset.o \
  114.         math_parser.o math_write.o math_draw.o latexoptions.o texoptions.o \
  115.         table.o buffer.o lastfiles.o sp_form.o lyx_sty.o figlist.o \
  116.         math_panel.o math_iter.o lyxrc.o lyxlex.o combox.o gsqueue.o \
  117.         minibuffer.o math_delim.o math_forms.o math_cursor.o math_utils.o \
  118.         lyx_sendfax.o lyx_sendfax_main.o LString.o bufferparams.o \
  119.         filetools.o filedlg.o error.o insetquotes.o toolbarbackend.o \
  120.     BufferView.o Spacing.o PaperLayout.o insetref.o \
  121.     insetlatexaccent.o insetinfo.o inseterror.o \
  122.     insetlabel.o bufferlist.o lyx_gui_misc.o vspace.o  LaTeX.o \
  123.     LyXView.o FileInfo.o insetcommand.o insetbib.o insetindex.o \
  124.     LyXAction.o lyxsum.o DepTable.o lyxserver.o LaTeXLog.o \
  125.     formulamacro.o insetinclude.o syscall.o syscontr.o syssingleton.o \
  126.     TableLayout.o insettoc.o insetlof.o insetlot.o lyxdraw.o \
  127.     LaTeXFeatures.o lyxvc.o trans.o tex-strings.o tex-accent.o \
  128.     ParagraphExtra.o FontInfo.o FontLoader.o insetparent.o \
  129.     LyXSendto.o Bullet.o bullet_forms.o bullet_forms_cb.o insetloa.o \
  130.     trans_mgr.o chset.o Chktex.o insetspecialchar.o lyxlookup.o
  131.  
  132. # for replacement functions like strerror()
  133. LIBOBJS = @LIBOBJS@
  134.  
  135. all: $(LYX_BINNAME)
  136.  
  137. $(LYX_BINNAME): $(OBJS) $(LIBOBJS)
  138.     $(CXX_COMMAND) -o $(LYX_BINNAME) $(OBJS) $(LIBOBJS) $(LDFLAGS) $(LIBS)
  139.  
  140. purify: $(OBJS) $(LIBOBJS)
  141.     purify $(CXX_COMMAND) -o lyx_pur $(OBJS) $(LIBOBJS) $(LDFLAGS) $(LIBS)
  142.  
  143. quantify: $(OBJS) $(LIBOBJS)
  144.     quantify $(CXX_COMMAND) -o lyx_quant $(OBJS) $(LIBOBJS) $(LDFLAGS) $(LIBS)
  145.  
  146. lyx_main.o: lyx_main.C
  147.     $(CXX_COMMAND) -c $(CXXFLAGS) $(CPPFLAGS) -DLYX_DIR=\"$(LYX_DIR)\" -DTOP_SRCDIR=\"$(top_srcdir)\" -DLYX_NAME=\"$(PACKAGE)\" ${top_srcdir}/src/lyx_main.C
  148.  
  149. main.o: main.C
  150.     $(CXX_COMMAND) -c $(CXXFLAGS) $(CPPFLAGS) -DPACKAGE=\"$(PACKAGE)\" -DLOCALEDIR=\"$(localedir)\" ${top_srcdir}/src/main.C
  151.  
  152. .C.o: 
  153.     $(CXX_COMMAND) -c $(CXXFLAGS) $(CPPFLAGS) $< 
  154.  
  155. depend: 
  156.     @echo "This is unnecessary now. The dependencies are already computed"
  157.  
  158. maintainer-depend:
  159.     sed '/\#'' DO NOT DELETE THIS LINE -- make depend depends on it./q' \
  160.      < Makefile.in > tmp_make
  161.     gcc -DHAVE_GETTEXT -I. -I../images -MM $(SRCS) >> tmp_make
  162.  
  163. TAGS: $(SRCS)
  164.     $(FIND) . -name "*.[chCH]" -print | $(ETAGS) --c++ -
  165.  
  166. install: @INSTALL_TARGET@
  167.  
  168. install-unix : $(LYX_BINNAME)
  169.     $(INSTALL_PROGRAM) $(LYX_BINNAME) $(bindir)/$(PACKAGE)
  170.     if test @lyx_devel_version@ = no ; then \
  171.       strip $(bindir)/$(LYX_BINNAME) ;\
  172.     fi
  173.  
  174. install-os2: $(LYX_BINNAME)
  175.     $(INSTALL_PROGRAM) $(LYX_BINNAME) $(bindir)/$(PACKAGE)
  176.     if test @lyx_devel_version@ = no ; then \
  177.     emxbind -s $(bindir)/$(LYX_BINNAME) ;\
  178.     fi || \
  179.     if @lyx_devel_version@==no emxbind -s $(bindir)/$(LYX_BINNAME)
  180.  
  181. clean:
  182.     $(RM) $(LYX_BINNAME) lyx_pur lyx_quant *.o core .pure
  183.  
  184. distclean:    clean
  185.     $(RM) config.h libintl.h config.status Makefile 
  186.     $(RM) *.orig *.rej *~ TAGS *.bak 
  187.  
  188. bindist:
  189.     strip $(LYX_BINNAME) 
  190.     $(LN) $(absbuilddir)/$(LYX_BINNAME)  $(bindistdir)/bin/$(LYX_BINNAME) 
  191.  
  192. # Make all object files depend on config.h
  193. $(OBJS): config.h
  194.  
  195. # DO NOT DELETE THIS LINE -- make depend depends on it.
  196. lyx_main.o: lyx_main.C version.h lyx_main.h lyx_gui.h lyxrc.h \
  197.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  198.  LString.h LyXAction.h lyxinset.h definitions.h gettext.h lyxfont.h \
  199.  lyxlex.h lyxscreen.h lyxdraw.h path.h filetools.h error.h \
  200.  lyx_gui_misc.h bufferlist.h buffer.h undo.h lyxparagraph.h table.h \
  201.  textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  202.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  203.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h FileInfo.h \
  204.  lastfiles.h intl.h form1.h lyxserver.h
  205. lyx_gui.o: lyx_gui.C lyx_gui.h combox.h LString.h lyx.h form1.h \
  206.  layout_forms.h print_form.h tex-strings.h lyx_main.h latexoptions.h \
  207.  error.h version.h LyXView.h buffer.h undo.h definitions.h \
  208.  lyxparagraph.h lyxinset.h gettext.h lyxfont.h lyxlex.h lyxscreen.h \
  209.  lyxdraw.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  210.  BufferView.h lyxvc.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  211.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h menus.h lyxserver.h \
  212.  lyxrc.h toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  213.  LyXAction.h lyx_gui_misc.h lyx_cb.h lyxlookup.h ../images/banner.xpm
  214. lyx.o: lyx.C lyx_gui_misc.h LString.h gettext.h lyx.h
  215. lyx_cb.o: lyx_cb.C LString.h lyx_main.h lyx.h layout_forms.h \
  216.  bullet_forms.h print_form.h form1.h spellchecker.h version.h lyx_cb.h \
  217.  credits.h insetref.h insetcommand.h lyxinset.h definitions.h \
  218.  gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h buffer.h undo.h \
  219.  lyxparagraph.h table.h textutils.h vspace.h insetbib.h BufferView.h \
  220.  lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  221.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  222.  insetlabel.h insetinfo.h insetspecialchar.h figinset.h lyxfunc.h \
  223.  commandtags.h kbmap.h tex-accent.h LyXAction.h minibuffer.h combox.h \
  224.  bufferlist.h error.h filetools.h path.h lyx_gui_misc.h filedlg.h \
  225.  LyXView.h menus.h lastfiles.h FileInfo.h syscall.h lyxlib.h \
  226.  lyxserver.h FontLoader.h lyxrc.h toolbarbackend.h insetfig.h \
  227.  LaTeXFeatures.h figlist.h
  228. lyxfr0.o: lyxfr0.C LString.h lyx_main.h form1.h lyxfr0.h lyxfr1.h \
  229.  lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
  230.  definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  231.  error.h lyxtext.h layout.h Spacing.h lyxrow.h undo.h lyxparagraph.h \
  232.  table.h textutils.h vspace.h insetbib.h insetcommand.h lyxcursor.h \
  233.  LyXView.h lyx.h buffer.h BufferView.h lyxvc.h latexoptions.h \
  234.  bufferparams.h Bullet.h insetquotes.h texrow.h menus.h
  235. lyxfr1.o: lyxfr1.C LString.h lyx_main.h form1.h lyxfr0.h lyxfr1.h \
  236.  lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
  237.  definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  238.  error.h lyxtext.h layout.h Spacing.h lyxrow.h undo.h lyxparagraph.h \
  239.  table.h textutils.h vspace.h insetbib.h insetcommand.h lyxcursor.h \
  240.  LyXView.h lyx.h buffer.h BufferView.h lyxvc.h latexoptions.h \
  241.  bufferparams.h Bullet.h insetquotes.h texrow.h menus.h lyx_gui_misc.h
  242. inset.o: inset.C lyxinset.h definitions.h gettext.h LString.h \
  243.  lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h error.h
  244. lyxfont.o: lyxfont.C gettext.h LString.h definitions.h lyxfont.h \
  245.  error.h lyxrc.h toolbarbackend.h lyxfunc.h commandtags.h kbmap.h \
  246.  tex-accent.h LyXAction.h lyxinset.h lyxlex.h lyxscreen.h lyxdraw.h \
  247.  FontLoader.h
  248. texrow.o: texrow.C texrow.h lyxparagraph.h definitions.h lyxinset.h \
  249.  gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
  250.  textutils.h vspace.h insetbib.h insetcommand.h error.h
  251. paragraph.o: paragraph.C lyxparagraph.h definitions.h lyxinset.h \
  252.  gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
  253.  textutils.h vspace.h insetbib.h insetcommand.h lyxrc.h \
  254.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  255.  LyXAction.h layout.h Spacing.h tex-strings.h bufferparams.h Bullet.h \
  256.  insetquotes.h FileInfo.h error.h LaTeXFeatures.h insetinclude.h \
  257.  buffer.h undo.h BufferView.h lyxvc.h latexoptions.h texrow.h \
  258.  lyxtext.h lyxrow.h lyxcursor.h filetools.h lyx_gui_misc.h
  259. layout.o: layout.C definitions.h layout.h lyxlex.h LString.h lyxfont.h \
  260.  gettext.h Spacing.h filetools.h error.h lyx_gui_misc.h
  261. screen.o: screen.C lyxscreen.h lyxdraw.h lyxfont.h LString.h gettext.h \
  262.  lyxtext.h definitions.h layout.h lyxlex.h Spacing.h lyxrow.h undo.h \
  263.  lyxparagraph.h lyxinset.h table.h textutils.h vspace.h insetbib.h \
  264.  insetcommand.h lyxcursor.h
  265. text.o: text.C layout.h definitions.h lyxlex.h LString.h lyxfont.h \
  266.  gettext.h Spacing.h lyxparagraph.h lyxinset.h lyxscreen.h lyxdraw.h \
  267.  table.h textutils.h vspace.h insetbib.h insetcommand.h lyxtext.h \
  268.  lyxrow.h undo.h lyxcursor.h lyx_gui_misc.h bufferparams.h Bullet.h \
  269.  insetquotes.h
  270. text2.o: text2.C LString.h lyxparagraph.h definitions.h lyxinset.h \
  271.  gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
  272.  textutils.h vspace.h insetbib.h insetcommand.h inseterror.h layout.h \
  273.  Spacing.h LyXView.h lyx.h buffer.h undo.h BufferView.h lyxvc.h \
  274.  latexoptions.h bufferparams.h Bullet.h insetquotes.h texrow.h \
  275.  lyxtext.h lyxrow.h lyxcursor.h menus.h lyx_cb.h minibuffer.h \
  276.  lyx_gui_misc.h
  277. spellchecker.o: spellchecker.C LString.h sp_form.h spellchecker.h \
  278.  lyx_main.h buffer.h undo.h definitions.h lyxparagraph.h lyxinset.h \
  279.  gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
  280.  textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  281.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  282.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h lyxrc.h \
  283.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  284.  LyXAction.h lyx_gui_misc.h error.h syscall.h
  285. kbmap.o: kbmap.C gettext.h LString.h kbmap.h error.h
  286. bmtable.o: bmtable.C bmtable.h
  287. math_symbols.o: math_symbols.C lyx_main.h buffer.h undo.h \
  288.  definitions.h lyxparagraph.h lyxinset.h gettext.h LString.h lyxfont.h \
  289.  lyxlex.h lyxscreen.h lyxdraw.h table.h textutils.h vspace.h \
  290.  insetbib.h insetcommand.h BufferView.h lyxvc.h latexoptions.h \
  291.  bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
  292.  layout.h lyxrow.h lyxcursor.h minibuffer.h lyxrc.h toolbarbackend.h \
  293.  lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxlib.h \
  294.  LyXView.h lyx.h menus.h error.h formula.h math_panel.h bmtable.h \
  295.  math_forms.h math_parser.h symbol_def.h ../images/greek.xbm \
  296.  ../images/arrows.xbm ../images/brel.xbm ../images/bop.xbm \
  297.  ../images/misc.xbm ../images/varsz.xbm ../images/dots.xbm
  298. procMgr.o: procMgr.C procMgr.h error.h LString.h
  299. lyxfunc.o: lyxfunc.C definitions.h lyxlookup.h kbmap.h lyxfunc.h \
  300.  commandtags.h tex-accent.h LString.h LyXAction.h lyxinset.h gettext.h \
  301.  lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h bufferlist.h buffer.h undo.h \
  302.  lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  303.  BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  304.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  305.  error.h lyxserver.h lyx.h intl.h form1.h lyx_main.h lyx_cb.h \
  306.  insetlatexaccent.h insettoc.h insetlof.h insetloa.h insetlot.h \
  307.  insetref.h insetparent.h formulamacro.h formula.h toolbar.h \
  308.  toolbarbackend.h combox.h spellchecker.h minibuffer.h LyXView.h \
  309.  menus.h insetindex.h insetinclude.h filetools.h filedlg.h \
  310.  lyx_gui_misc.h lyxrc.h trans_mgr.h trans_decl.h
  311. credits.o: credits.C credits.h credits_form.h LString.h filetools.h \
  312.  error.h lyx_gui_misc.h gettext.h
  313. menus.o: menus.C menus.h lyx.h lyx_cb.h version.h lyxfont.h LString.h \
  314.  gettext.h lyx_main.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  315.  LyXAction.h lyxinset.h definitions.h lyxlex.h lyxscreen.h lyxdraw.h \
  316.  spellchecker.h filetools.h error.h LyXView.h buffer.h undo.h \
  317.  lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  318.  BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  319.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  320.  lastfiles.h bufferlist.h lyx_gui_misc.h minibuffer.h intl.h form1.h \
  321.  lyxrc.h toolbarbackend.h
  322. intl.o: intl.C intl.h form1.h tex-strings.h combox.h LString.h \
  323.  lyx_gui_misc.h error.h lyxrc.h toolbarbackend.h lyxfunc.h \
  324.  commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
  325.  definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  326.  trans_mgr.h trans_decl.h
  327. form1.o: form1.C lyx_gui_misc.h LString.h gettext.h form1.h
  328. insetfig.o: insetfig.C insetfig.h lyxinset.h definitions.h gettext.h \
  329.  LString.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h buffer.h undo.h \
  330.  lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  331.  BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  332.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  333.  LaTeXFeatures.h figinset.h figlist.h form1.h error.h lyxrc.h \
  334.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  335.  LyXAction.h filetools.h lyx_gui_misc.h FileInfo.h filedlg.h \
  336.  lyx_main.h procMgr.h
  337. credits_form.o: credits_form.C lyx_gui_misc.h LString.h gettext.h \
  338.  credits_form.h
  339. layout_forms.o: layout_forms.C lyx_gui_misc.h LString.h gettext.h \
  340.  layout_forms.h
  341. print_form.o: print_form.C lyx_gui_misc.h LString.h gettext.h \
  342.  print_form.h
  343. math_macro.o: math_macro.C LString.h math_macro.h math_defs.h array.h \
  344.  math_iter.h math_inset.h symbol_def.h error.h
  345. figinset.o: figinset.C lyx_main.h error.h LString.h procMgr.h \
  346.  insetfig.h lyxinset.h definitions.h gettext.h lyxfont.h lyxlex.h \
  347.  lyxscreen.h lyxdraw.h buffer.h undo.h lyxparagraph.h table.h \
  348.  textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  349.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  350.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h LaTeXFeatures.h \
  351.  figinset.h figlist.h form1.h gsqueue.h
  352. toolbar.o: toolbar.C lyx_main.h lyx_gui_misc.h LString.h lyx.h \
  353.  toolbar.h toolbarbackend.h lyxfunc.h commandtags.h kbmap.h \
  354.  tex-accent.h LyXAction.h lyxinset.h definitions.h gettext.h lyxfont.h \
  355.  lyxlex.h lyxscreen.h lyxdraw.h combox.h error.h lyx_cb.h LyXView.h \
  356.  buffer.h undo.h lyxparagraph.h table.h textutils.h vspace.h \
  357.  insetbib.h insetcommand.h BufferView.h lyxvc.h latexoptions.h \
  358.  bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
  359.  layout.h lyxrow.h lyxcursor.h menus.h ../images/cut.xpm \
  360.  ../images/emph.xpm ../images/fig.xpm ../images/foot.xpm \
  361.  ../images/math.xpm ../images/depth.xpm ../images/margin.xpm \
  362.  ../images/melt.xpm ../images/copy.xpm ../images/noun.xpm \
  363.  ../images/paste.xpm ../images/free.xpm ../images/tab.xpm \
  364.  ../images/tex.xpm ../images/open.xpm ../images/close.xpm \
  365.  ../images/save.xpm ../images/print1.xpm ../images/quit.xpm \
  366.  ../images/unknown.xpm ../images/bold_bw.xpm \
  367.  ../images/make_ascii_bw.xpm ../images/make_latex_bw.xpm \
  368.  ../images/run_latex_bw.xpm ../images/sans_bw.xpm \
  369.  ../images/view_dvi_bw.xpm ../images/view_ps_bw.xpm
  370. formula.o: formula.C formula.h definitions.h lyxinset.h gettext.h \
  371.  LString.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h commandtags.h \
  372.  math_cursor.h math_iter.h math_defs.h array.h math_inset.h \
  373.  symbol_def.h math_parser.h lyx_main.h bufferlist.h buffer.h undo.h \
  374.  lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  375.  BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  376.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  377.  error.h lyx_cb.h minibuffer.h LaTeXFeatures.h
  378. math_hash.o: math_hash.C math_defs.h array.h math_parser.h \
  379.  symbol_def.h
  380. math_inset.o: math_inset.C math_iter.h math_defs.h array.h \
  381.  math_inset.h symbol_def.h LString.h
  382. math_parser.o: math_parser.C math_parser.h symbol_def.h math_iter.h \
  383.  math_defs.h array.h math_inset.h LString.h math_macro.h error.h
  384. math_write.o: math_write.C LString.h math_inset.h math_defs.h array.h \
  385.  symbol_def.h math_iter.h math_parser.h
  386. math_draw.o: math_draw.C math_cursor.h math_iter.h math_defs.h array.h \
  387.  math_inset.h symbol_def.h LString.h math_parser.h
  388. latexoptions.o: latexoptions.C lyx_gui_misc.h LString.h gettext.h \
  389.  latexoptions.h
  390. texoptions.o: texoptions.C latexoptions.h lyx_cb.h lyx_main.h buffer.h \
  391.  undo.h definitions.h lyxparagraph.h lyxinset.h gettext.h LString.h \
  392.  lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h textutils.h vspace.h \
  393.  insetbib.h insetcommand.h BufferView.h lyxvc.h bufferparams.h \
  394.  Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
  395.  lyxcursor.h
  396. table.o: table.C table.h definitions.h lyxlex.h LString.h vspace.h \
  397.  layout.h lyxfont.h gettext.h Spacing.h
  398. buffer.o: buffer.C definitions.h buffer.h undo.h lyxparagraph.h \
  399.  lyxinset.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  400.  lyxdraw.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  401.  BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  402.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  403.  bufferlist.h error.h lyx_main.h lyx_gui_misc.h lyxrc.h \
  404.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  405.  LyXAction.h tex-strings.h linuxdoc.h lyx_cb.h minibuffer.h \
  406.  formulamacro.h formula.h inseterror.h insetlabel.h insetref.h \
  407.  insetinfo.h insetlatexaccent.h insetindex.h insetinclude.h \
  408.  filetools.h insettoc.h insetlof.h insetlot.h insetloa.h insetparent.h \
  409.  insetspecialchar.h insetfig.h LaTeXFeatures.h figinset.h figlist.h \
  410.  form1.h path.h LaTeX.h DepTable.h Chktex.h LyXView.h lyx.h menus.h \
  411.  syscall.h lyxlib.h FileInfo.h
  412. lastfiles.o: lastfiles.C lyxlex.h LString.h FileInfo.h lastfiles.h \
  413.  filetools.h error.h
  414. sp_form.o: sp_form.C lyx_gui_misc.h LString.h gettext.h sp_form.h
  415. lyx_sty.o: lyx_sty.C lyx_sty.h LString.h
  416. figlist.o: figlist.C figlist.h form1.h LString.h error.h lyx_main.h \
  417.  insetfig.h lyxinset.h definitions.h gettext.h lyxfont.h lyxlex.h \
  418.  lyxscreen.h lyxdraw.h buffer.h undo.h lyxparagraph.h table.h \
  419.  textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  420.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  421.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h LaTeXFeatures.h \
  422.  figinset.h LyXView.h lyx.h menus.h procMgr.h gsqueue.h
  423. math_panel.o: math_panel.C math_panel.h bmtable.h math_forms.h \
  424.  symbol_def.h formula.h definitions.h lyxinset.h gettext.h LString.h \
  425.  lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h lyxfunc.h commandtags.h \
  426.  kbmap.h tex-accent.h LyXAction.h ../images/delim.xbm \
  427.  ../images/delim0.xpm ../images/delim.xpm ../images/deco.xbm \
  428.  ../images/deco.xpm ../images/space.xpm ../images/sqrt.xpm \
  429.  ../images/frac.xpm ../images/matrix.xpm ../images/equation.xpm
  430. math_iter.o: math_iter.C math_iter.h math_defs.h array.h math_inset.h \
  431.  symbol_def.h LString.h error.h
  432. lyxrc.o: lyxrc.C error.h LString.h lyxrc.h toolbarbackend.h lyxfunc.h \
  433.  commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
  434.  definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  435.  lyxserver.h lyx_main.h intl.h form1.h tex-strings.h path.h \
  436.  filetools.h lyx_gui_misc.h lyxtext.h layout.h Spacing.h lyxrow.h \
  437.  undo.h lyxparagraph.h table.h textutils.h vspace.h insetbib.h \
  438.  insetcommand.h lyxcursor.h
  439. lyxlex.o: lyxlex.C lyxlex.h LString.h error.h filetools.h
  440. combox.o: combox.C combox.h LString.h error.h
  441. gsqueue.o: gsqueue.C gsqueue.h figlist.h form1.h LString.h error.h \
  442.  lyx_main.h filetools.h lyxrc.h toolbarbackend.h lyxfunc.h \
  443.  commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
  444.  definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  445.  syscall.h
  446. minibuffer.o: minibuffer.C filetools.h error.h LString.h lyx_main.h \
  447.  lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
  448.  definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  449.  minibuffer.h LyXView.h lyx.h buffer.h undo.h lyxparagraph.h table.h \
  450.  textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  451.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  452.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h menus.h
  453. math_delim.o: math_delim.C symbol_def.h math_inset.h math_defs.h \
  454.  array.h LString.h
  455. math_forms.o: math_forms.C lyx_gui_misc.h LString.h gettext.h \
  456.  math_panel.h bmtable.h math_forms.h
  457. math_cursor.o: math_cursor.C math_inset.h math_defs.h array.h \
  458.  symbol_def.h LString.h math_parser.h math_cursor.h math_iter.h \
  459.  math_macro.h error.h
  460. math_utils.o: math_utils.C math_defs.h array.h symbol_def.h
  461. lyx_sendfax.o: lyx_sendfax.C lyx_gui_misc.h LString.h gettext.h \
  462.  lyx_sendfax.h
  463. lyx_sendfax_main.o: lyx_sendfax_main.C error.h LString.h lyx_sendfax.h \
  464.  lyx_main.h lyxrc.h toolbarbackend.h lyxfunc.h commandtags.h kbmap.h \
  465.  tex-accent.h LyXAction.h lyxinset.h definitions.h gettext.h lyxfont.h \
  466.  lyxlex.h lyxscreen.h lyxdraw.h filetools.h lyx_gui_misc.h syscall.h
  467. LString.o: LString.C LString.h LAssert.h
  468. bufferparams.o: bufferparams.C bufferparams.h LString.h lyxlex.h \
  469.  vspace.h Spacing.h Bullet.h insetquotes.h lyxinset.h definitions.h \
  470.  gettext.h lyxfont.h lyxscreen.h lyxdraw.h tex-strings.h layout.h \
  471.  error.h lyxlib.h
  472. filetools.o: filetools.C filetools.h error.h LString.h lyx_gui_misc.h \
  473.  FileInfo.h path.h gettext.h
  474. filedlg.o: filedlg.C lyx_gui_misc.h LString.h FileInfo.h gettext.h \
  475.  filetools.h error.h filedlg.h form1.h definitions.h
  476. error.o: error.C error.h LString.h
  477. insetquotes.o: insetquotes.C insetquotes.h lyxinset.h definitions.h \
  478.  gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h lyxlib.h \
  479.  error.h lyxrc.h toolbarbackend.h lyxfunc.h commandtags.h kbmap.h \
  480.  tex-accent.h LyXAction.h buffer.h undo.h lyxparagraph.h table.h \
  481.  textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  482.  latexoptions.h bufferparams.h Spacing.h Bullet.h texrow.h lyxtext.h \
  483.  layout.h lyxrow.h lyxcursor.h LaTeXFeatures.h
  484. toolbarbackend.o: toolbarbackend.C toolbarbackend.h lyxfunc.h \
  485.  commandtags.h kbmap.h tex-accent.h LString.h LyXAction.h lyxinset.h \
  486.  definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  487.  error.h
  488. BufferView.o: BufferView.C commandtags.h BufferView.h bufferlist.h \
  489.  buffer.h undo.h definitions.h lyxparagraph.h lyxinset.h gettext.h \
  490.  LString.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
  491.  textutils.h vspace.h insetbib.h insetcommand.h lyxvc.h latexoptions.h \
  492.  bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
  493.  layout.h lyxrow.h lyxcursor.h error.h LyXView.h lyx.h menus.h \
  494.  lyxfunc.h kbmap.h tex-accent.h LyXAction.h minibuffer.h \
  495.  ../images/up.xpm ../images/down.xpm lyx_gui_misc.h BackStack.h \
  496.  lyx_cb.h
  497. Spacing.o: Spacing.C Spacing.h
  498. PaperLayout.o: PaperLayout.C definitions.h layout_forms.h lyx_main.h \
  499.  lyxrc.h toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  500.  LString.h LyXAction.h lyxinset.h gettext.h lyxfont.h lyxlex.h \
  501.  lyxscreen.h lyxdraw.h filetools.h error.h buffer.h undo.h \
  502.  lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  503.  BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  504.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  505.  minibuffer.h lyx_gui_misc.h
  506. insetref.o: insetref.C insetref.h insetcommand.h lyxinset.h \
  507.  definitions.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  508.  lyxdraw.h buffer.h undo.h lyxparagraph.h table.h textutils.h vspace.h \
  509.  insetbib.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
  510.  Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
  511.  lyxcursor.h error.h lyx_gui_misc.h LyXView.h lyx.h menus.h lyxfunc.h \
  512.  commandtags.h kbmap.h tex-accent.h LyXAction.h
  513. insetlatexaccent.o: insetlatexaccent.C insetlatexaccent.h lyxinset.h \
  514.  definitions.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  515.  lyxdraw.h error.h lyxrc.h toolbarbackend.h lyxfunc.h commandtags.h \
  516.  kbmap.h tex-accent.h LyXAction.h
  517. insetinfo.o: insetinfo.C insetinfo.h lyxinset.h definitions.h \
  518.  gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  519.  lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  520.  error.h lyx_gui_misc.h buffer.h undo.h BufferView.h lyxvc.h \
  521.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  522.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h
  523. inseterror.o: inseterror.C definitions.h inseterror.h lyxinset.h \
  524.  gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  525.  lyx_gui_misc.h
  526. insetlabel.o: insetlabel.C insetlabel.h insetcommand.h lyxinset.h \
  527.  definitions.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  528.  lyxdraw.h
  529. bufferlist.o: bufferlist.C bufferlist.h buffer.h undo.h definitions.h \
  530.  lyxparagraph.h lyxinset.h gettext.h LString.h lyxfont.h lyxlex.h \
  531.  lyxscreen.h lyxdraw.h table.h textutils.h vspace.h insetbib.h \
  532.  insetcommand.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
  533.  Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
  534.  lyxcursor.h error.h lyx_main.h minibuffer.h FileInfo.h filetools.h \
  535.  lyx_gui_misc.h lastfiles.h LyXView.h lyx.h menus.h lyxrc.h \
  536.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  537.  LyXAction.h lyx_cb.h
  538. lyx_gui_misc.o: lyx_gui_misc.C lyx_gui_misc.h LString.h BufferView.h \
  539.  bibforms.h buffer.h undo.h definitions.h lyxparagraph.h lyxinset.h \
  540.  gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
  541.  textutils.h vspace.h insetbib.h insetcommand.h lyxvc.h latexoptions.h \
  542.  bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
  543.  layout.h lyxrow.h lyxcursor.h bullet_forms.h form1.h include_form.h \
  544.  layout_forms.h lyx.h lyx_cb.h lyx_main.h math_forms.h minibuffer.h \
  545.  print_form.h sp_form.h
  546. vspace.o: vspace.C lyx_main.h buffer.h undo.h definitions.h \
  547.  lyxparagraph.h lyxinset.h gettext.h LString.h lyxfont.h lyxlex.h \
  548.  lyxscreen.h lyxdraw.h table.h textutils.h vspace.h insetbib.h \
  549.  insetcommand.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
  550.  Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
  551.  lyxcursor.h lyxrc.h toolbarbackend.h lyxfunc.h commandtags.h kbmap.h \
  552.  tex-accent.h LyXAction.h
  553. LaTeX.o: LaTeX.C filetools.h error.h LString.h LaTeX.h DepTable.h \
  554.  lyxlex.h FileInfo.h lyxlib.h gettext.h syscall.h syscontr.h path.h \
  555.  lyx_gui_misc.h bufferlist.h buffer.h undo.h definitions.h \
  556.  lyxparagraph.h lyxinset.h lyxfont.h lyxscreen.h lyxdraw.h table.h \
  557.  textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  558.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  559.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h minibuffer.h
  560. LyXView.o: LyXView.C LyXView.h lyx.h buffer.h undo.h definitions.h \
  561.  lyxparagraph.h lyxinset.h gettext.h LString.h lyxfont.h lyxlex.h \
  562.  lyxscreen.h lyxdraw.h table.h textutils.h vspace.h insetbib.h \
  563.  insetcommand.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
  564.  Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
  565.  lyxcursor.h menus.h lyx_main.h lyxlookup.h toolbar.h toolbarbackend.h \
  566.  lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h combox.h \
  567.  minibuffer.h ../images/lyx.xpm error.h layout_forms.h intl.h form1.h \
  568.  lyxrc.h filetools.h
  569. FileInfo.o: FileInfo.C FileInfo.h LString.h
  570. insetcommand.o: insetcommand.C insetcommand.h lyxinset.h definitions.h \
  571.  gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h error.h
  572. insetbib.o: insetbib.C insetbib.h insetcommand.h lyxinset.h \
  573.  definitions.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  574.  lyxdraw.h combox.h buffer.h undo.h lyxparagraph.h table.h textutils.h \
  575.  vspace.h BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h \
  576.  Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
  577.  lyxcursor.h error.h lyx_gui_misc.h bibforms.h
  578. insetindex.o: insetindex.C insetindex.h insetcommand.h lyxinset.h \
  579.  definitions.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  580.  lyxdraw.h buffer.h undo.h lyxparagraph.h table.h textutils.h vspace.h \
  581.  insetbib.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
  582.  Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
  583.  lyxcursor.h error.h LaTeXFeatures.h lyx_gui_misc.h
  584. LyXAction.o: LyXAction.C LyXAction.h commandtags.h error.h gettext.h
  585. lyxsum.o: lyxsum.C
  586. DepTable.o: DepTable.C DepTable.h LString.h lyxlib.h gettext.h \
  587.  filetools.h error.h
  588. lyxserver.o: lyxserver.C lyxserver.h LString.h lyxfunc.h commandtags.h \
  589.  kbmap.h tex-accent.h LyXAction.h lyxinset.h definitions.h gettext.h \
  590.  lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h lyx_main.h error.h
  591. LaTeXLog.o: LaTeXLog.C buffer.h undo.h definitions.h lyxparagraph.h \
  592.  lyxinset.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  593.  lyxdraw.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  594.  BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  595.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  596.  lyx_main.h filetools.h error.h path.h lyx_gui_misc.h lyxrc.h \
  597.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  598.  LyXAction.h
  599. formulamacro.o: formulamacro.C formulamacro.h formula.h definitions.h \
  600.  lyxinset.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  601.  lyxdraw.h commandtags.h math_cursor.h math_iter.h math_defs.h array.h \
  602.  math_inset.h symbol_def.h math_parser.h math_macro.h lyx_main.h \
  603.  bufferlist.h buffer.h undo.h lyxparagraph.h table.h textutils.h \
  604.  vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  605.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  606.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h error.h lyx_cb.h
  607. insetinclude.o: insetinclude.C filedlg.h LString.h form1.h \
  608.  insetinclude.h insetcommand.h lyxinset.h definitions.h gettext.h \
  609.  lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h buffer.h undo.h \
  610.  lyxparagraph.h table.h textutils.h vspace.h insetbib.h BufferView.h \
  611.  lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  612.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  613.  filetools.h error.h bufferlist.h lyxrc.h toolbarbackend.h lyxfunc.h \
  614.  commandtags.h kbmap.h tex-accent.h LyXAction.h LyXView.h lyx.h \
  615.  menus.h LaTeXFeatures.h lyx_gui_misc.h include_form.h FileInfo.h
  616. syscall.o: syscall.C syscall.h syscontr.h
  617. syscontr.o: syscontr.C syscontr.h syscall.h
  618. syssingleton.o: syssingleton.C syscontr.h
  619. TableLayout.o: TableLayout.C definitions.h layout_forms.h lyx_main.h \
  620.  lyxrc.h toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  621.  LString.h LyXAction.h lyxinset.h gettext.h lyxfont.h lyxlex.h \
  622.  lyxscreen.h lyxdraw.h filetools.h error.h buffer.h undo.h \
  623.  lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  624.  BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
  625.  insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
  626.  lyx_gui_misc.h
  627. insettoc.o: insettoc.C
  628. insetlof.o: insetlof.C
  629. insetlot.o: insetlot.C
  630. lyxdraw.o: lyxdraw.C lyxdraw.h lyxfont.h LString.h gettext.h error.h
  631. LaTeXFeatures.o: LaTeXFeatures.C LString.h error.h lyx_sty.h lyxrc.h \
  632.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  633.  LyXAction.h lyxinset.h definitions.h gettext.h lyxfont.h lyxlex.h \
  634.  lyxscreen.h lyxdraw.h LaTeXFeatures.h bufferparams.h vspace.h \
  635.  Spacing.h Bullet.h insetquotes.h layout.h
  636. lyxvc.o: lyxvc.C lyxvc.h LString.h latexoptions.h error.h \
  637.  lyx_gui_misc.h bufferlist.h buffer.h undo.h definitions.h \
  638.  lyxparagraph.h lyxinset.h gettext.h lyxfont.h lyxlex.h lyxscreen.h \
  639.  lyxdraw.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
  640.  BufferView.h bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h \
  641.  lyxtext.h layout.h lyxrow.h lyxcursor.h syscall.h path.h filetools.h \
  642.  FileInfo.h LyXView.h lyx.h menus.h lyxfunc.h commandtags.h kbmap.h \
  643.  tex-accent.h LyXAction.h
  644. trans.o: trans.C LyXView.h lyx.h buffer.h undo.h definitions.h \
  645.  lyxparagraph.h lyxinset.h gettext.h LString.h lyxfont.h lyxlex.h \
  646.  lyxscreen.h lyxdraw.h table.h textutils.h vspace.h insetbib.h \
  647.  insetcommand.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
  648.  Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
  649.  lyxcursor.h menus.h trans.h tex-accent.h commandtags.h trans_decl.h \
  650.  filetools.h error.h tex-strings.h trans_mgr.h
  651. tex-strings.o: tex-strings.C tex-strings.h
  652. tex-accent.o: tex-accent.C tex-accent.h commandtags.h LString.h
  653. ParagraphExtra.o: ParagraphExtra.C definitions.h layout_forms.h \
  654.  LString.h minibuffer.h gettext.h vspace.h buffer.h undo.h \
  655.  lyxparagraph.h lyxinset.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
  656.  table.h textutils.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  657.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  658.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h
  659. FontInfo.o: FontInfo.C FontInfo.h LString.h error.h lyxrc.h \
  660.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  661.  LyXAction.h lyxinset.h definitions.h gettext.h lyxfont.h lyxlex.h \
  662.  lyxscreen.h lyxdraw.h
  663. FontLoader.o: FontLoader.C gettext.h LString.h FontLoader.h lyxfont.h \
  664.  FontInfo.h error.h lyxrc.h toolbarbackend.h lyxfunc.h commandtags.h \
  665.  kbmap.h tex-accent.h LyXAction.h lyxinset.h definitions.h lyxlex.h \
  666.  lyxscreen.h lyxdraw.h minibuffer.h
  667. insetparent.o: insetparent.C insetparent.h insetcommand.h lyxinset.h \
  668.  definitions.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  669.  lyxdraw.h filetools.h error.h BufferView.h LyXView.h lyx.h buffer.h \
  670.  undo.h lyxparagraph.h table.h textutils.h vspace.h insetbib.h lyxvc.h \
  671.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  672.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h menus.h lyxfunc.h \
  673.  commandtags.h kbmap.h tex-accent.h LyXAction.h
  674. LyXSendto.o: LyXSendto.C print_form.h lyx_main.h lyxrc.h \
  675.  toolbarbackend.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
  676.  LString.h LyXAction.h lyxinset.h definitions.h gettext.h lyxfont.h \
  677.  lyxlex.h lyxscreen.h lyxdraw.h filetools.h error.h path.h \
  678.  lyx_gui_misc.h buffer.h undo.h lyxparagraph.h table.h textutils.h \
  679.  vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
  680.  latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
  681.  texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h syscall.h lyx_cb.h
  682. Bullet.o: Bullet.C Bullet.h LString.h
  683. bullet_forms.o: bullet_forms.C lyx_gui_misc.h LString.h gettext.h \
  684.  bullet_forms.h bmtable.h filetools.h error.h
  685. bullet_forms_cb.o: bullet_forms_cb.C bullet_forms.h bmtable.h buffer.h \
  686.  undo.h definitions.h lyxparagraph.h lyxinset.h gettext.h LString.h \
  687.  lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h textutils.h vspace.h \
  688.  insetbib.h insetcommand.h BufferView.h lyxvc.h latexoptions.h \
  689.  bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
  690.  layout.h lyxrow.h lyxcursor.h filetools.h error.h lyx_gui_misc.h
  691. insetloa.o: insetloa.C LaTeXFeatures.h insetloa.h insetcommand.h \
  692.  lyxinset.h definitions.h gettext.h LString.h lyxfont.h lyxlex.h \
  693.  lyxscreen.h lyxdraw.h insettoc.h insetlof.h insetlot.h
  694. trans_mgr.o: trans_mgr.C trans_mgr.h tex-accent.h commandtags.h \
  695.  LString.h trans_decl.h trans.h lyxtext.h definitions.h layout.h \
  696.  lyxlex.h lyxfont.h gettext.h Spacing.h lyxrow.h undo.h lyxparagraph.h \
  697.  lyxinset.h lyxscreen.h lyxdraw.h table.h textutils.h vspace.h \
  698.  insetbib.h insetcommand.h lyxcursor.h error.h chset.h \
  699.  insetlatexaccent.h BufferView.h buffer.h lyxvc.h latexoptions.h \
  700.  bufferparams.h Bullet.h insetquotes.h texrow.h lyxrc.h \
  701.  toolbarbackend.h lyxfunc.h kbmap.h LyXAction.h
  702. chset.o: chset.C chset.h LString.h filetools.h error.h lyxlex.h
  703. Chktex.o: Chktex.C Chktex.h LString.h LaTeX.h DepTable.h filetools.h \
  704.  error.h lyxlex.h FileInfo.h syscall.h syscontr.h path.h gettext.h \
  705.  lyx_gui_misc.h
  706. insetspecialchar.o: insetspecialchar.C insetspecialchar.h lyxinset.h \
  707.  definitions.h gettext.h LString.h lyxfont.h lyxlex.h lyxscreen.h \
  708.  lyxdraw.h error.h
  709. lyxlookup.o: lyxlookup.C error.h LString.h
  710.