|
###/* This file is part of
###* ======================================================
###*
###* LyX, the High Level Word Processor
###*
###* Copyright (C) 1995 Matthias Ettrich
###* Copyright (C) 1995-1998 The LyX Team
###*
###*======================================================*/
###
###
### Makefile by Jean-Marc Lasgouttes (Jean-Marc.Lasgouttes@inria.fr)
###
# Common autoconf directories
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir= ..
bindir = @bindir@
datadir = @datadir@
mandir = @mandir@
program_suffix = @program_suffix@
localedir = $(datadir)/locale
# These are needed for the bindist target
absbuilddir=@absbuilddir@/src
abssrcdir=@abstopsrcdir@/src
# The name to use to install LyX
PACKAGE = @PACKAGE@
VERSION = @VERSION@
PROGEXT = @PROGEXT@
LYX_BINNAME = $(PACKAGE)$(PROGEXT)
bindistdir = ../$(PACKAGE)-$(VERSION)-bin
distdir = $(PACKAGE)-$(VERSION)
# For all LyX support files
LYX_DIR = $(datadir)/$(PACKAGE)
# C++ compiler and flags (you may replace CXXFLAGS by `-O2' if you want
# a faster executable without debug information. This can also be done
# by setting the CXXFLAGS environment variable before running configure.
CXX = @CXX@
CXXFLAGS = @CXXFLAGS@
# Libraries for linking and flags for the C preprocessor. If you need to
# modify this to compile LyX, please send a bug report so that we can
# improve configure.
LYX_LIBS = @LYX_LIBS@
LIBS = @INTLLIBS@ $(LYX_LIBS) @LIBS@
LDFLAGS = @LDFLAGS@
CPPFLAGS = -I. -I${srcdir} -I${top_srcdir}/images @CPPFLAGS@
###################################################################
# You should not need to change anything below this line.
# for multiple architectures compilation
VPATH = @srcdir@
# The GNU coding standards recommends this. Don't ask me why...
SHELL = /bin/sh
.SUFFIXES:
.SUFFIXES: .C .o
@SET_MAKE@
# Various commands
CXX_COMMAND = @CXX_COMMAND@
FIND = find
ETAGS = etags
MKINSTALLDIRS = $(srcdir)/config/mkinstalldirs
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
RM = rm -f
LN = ln -s
MANSUFFIX = 1
SRCS = main.C lyx_main.C lyx_gui.C lyx.C lyx_cb.C lyxfr0.C lyxfr1.C \
inset.C lyxfont.C \
texrow.C paragraph.C layout.C screen.C text.C text2.C \
spellchecker.C kbmap.C bmtable.C math_symbols.C \
lyxfunc.C credits.C menus.C intl.C form1.C \
credits_form.C layout_forms.C print_form.C math_macro.C \
figinset.C toolbar.C formula.C math_hash.C math_inset.C \
math_parser.C math_write.C math_draw.C latexoptions.C texoptions.C \
table.C buffer.C lastfiles.C sp_form.C lyx_sty.C \
math_panel.C math_iter.C lyxrc.C lyxlex.C combox.C \
minibuffer.C math_delim.C math_forms.C math_cursor.C math_utils.C \
lyx_sendfax.C lyx_sendfax_main.C LString.C bufferparams.C \
pathstack.C filetools.C filedlg.C error.C insetquotes.C \
insetlatex.C BufferView.C Spacing.C PaperLayout.C insetref.C \
inseturl.C insetlatexaccent.C insetinfo.C inseterror.C \
insetlabel.C bufferlist.C lyx_gui_misc.C vspace.C LaTeX.C \
LyXView.C FileInfo.C insetcommand.C insetbib.C insetindex.C \
LyXAction.C lyxsum.C DepTable.C lyxserver.C LaTeXLog.C \
formulamacro.C insetinclude.C syscall.C syscontr.C syssingleton.C \
TableLayout.C insettoc.C insetlof.C insetlot.C lyxdraw.C \
LaTeXFeatures.C lyxvc.C trans.C tex-strings.C tex-accent.C \
ParagraphExtra.C FontInfo.C FontLoader.C insetparent.C \
LyXSendto.C Bullet.C bullet_forms.C bullet_forms_cb.C insetloa.C \
trans_mgr.C chset.C Chktex.C insetspecialchar.C lyxlookup.C \
ImportLaTeX.C
OBJS = main.o lyx_main.o lyx_gui.o lyx.o lyx_cb.o lyxfr0.o lyxfr1.o \
inset.o lyxfont.o \
texrow.o paragraph.o layout.o screen.o text.o text2.o \
spellchecker.o kbmap.o bmtable.o math_symbols.o \
lyxfunc.o credits.o menus.o intl.o form1.o \
credits_form.o layout_forms.o print_form.o math_macro.o \
figinset.o toolbar.o formula.o math_hash.o math_inset.o \
math_parser.o math_write.o math_draw.o latexoptions.o texoptions.o \
table.o buffer.o lastfiles.o sp_form.o lyx_sty.o \
math_panel.o math_iter.o lyxrc.o lyxlex.o combox.o \
minibuffer.o math_delim.o math_forms.o math_cursor.o math_utils.o \
lyx_sendfax.o lyx_sendfax_main.o LString.o bufferparams.o \
pathstack.o filetools.o filedlg.o error.o insetquotes.o \
insetlatex.o BufferView.o Spacing.o PaperLayout.o insetref.o \
inseturl.o insetlatexaccent.o insetinfo.o inseterror.o \
insetlabel.o bufferlist.o lyx_gui_misc.o vspace.o LaTeX.o \
LyXView.o FileInfo.o insetcommand.o insetbib.o insetindex.o \
LyXAction.o lyxsum.o DepTable.o lyxserver.o LaTeXLog.o \
formulamacro.o insetinclude.o syscall.o syscontr.o syssingleton.o \
TableLayout.o insettoc.o insetlof.o insetlot.o lyxdraw.o \
LaTeXFeatures.o lyxvc.o trans.o tex-strings.o tex-accent.o \
ParagraphExtra.o FontInfo.o FontLoader.o insetparent.o \
LyXSendto.o Bullet.o bullet_forms.o bullet_forms_cb.o insetloa.o \
trans_mgr.o chset.o Chktex.o insetspecialchar.o lyxlookup.o \
ImportLaTeX.o
# for replacement functions like strerror()
LIBOBJS = @LIBOBJS@
all: $(LYX_BINNAME)
$(LYX_BINNAME): $(OBJS) $(LIBOBJS)
$(CXX_COMMAND) -o $(LYX_BINNAME) $(OBJS) $(LIBOBJS) $(LDFLAGS) $(LIBS)
purify: $(OBJS) $(LIBOBJS)
purify $(CXX_COMMAND) -o lyx_pur $(OBJS) $(LIBOBJS) $(LDFLAGS) $(LIBS)
quantify: $(OBJS) $(LIBOBJS)
quantify $(CXX_COMMAND) -o lyx_quant $(OBJS) $(LIBOBJS) $(LDFLAGS) $(LIBS)
lyx_main.o: lyx_main.C
$(CXX_COMMAND) -c $(CXXFLAGS) $(CPPFLAGS) -DLYX_DIR=\"$(LYX_DIR)\" -DTOP_SRCDIR=\"$(top_srcdir)\" -DLYX_NAME=\"$(PACKAGE)\" ${top_srcdir}/src/lyx_main.C
main.o: main.C
$(CXX_COMMAND) -c $(CXXFLAGS) $(CPPFLAGS) -DPACKAGE=\"$(PACKAGE)\" -DLOCALEDIR=\"$(localedir)\" ${top_srcdir}/src/main.C
.C.o:
$(CXX_COMMAND) -c $(CXXFLAGS) $(CPPFLAGS) $<
depend:
@echo "This is unnecessary now. The dependencies are already computed"
maintainer-depend:
sed '/\#'' DO NOT DELETE THIS LINE -- make depend depends on it./q' \
< Makefile.in > tmp_make
gcc -DHAVE_GETTEXT -I. -I../images -MM $(SRCS) >> tmp_make
TAGS: $(SRCS)
$(FIND) . -name "*.[chCH]" -print | $(ETAGS) --c++ -
install: @INSTALL_TARGET@
install-unix : $(LYX_BINNAME)
$(INSTALL_PROGRAM) $(LYX_BINNAME) $(bindir)/$(PACKAGE)
if test @lyx_devel_version@ = no ; then \
strip $(bindir)/$(LYX_BINNAME) ;\
fi
install-os2: $(LYX_BINNAME)
$(INSTALL_PROGRAM) $(LYX_BINNAME) $(bindir)/$(PACKAGE)
if test @lyx_devel_version@ = no ; then \
emxbind -s $(bindir)/$(LYX_BINNAME) ;\
fi || \
if @lyx_devel_version@==no emxbind -s $(bindir)/$(LYX_BINNAME)
clean:
$(RM) $(LYX_BINNAME) lyx_pur lyx_quant *.o core .pure
distclean: clean
$(RM) config.h libintl.h config.status Makefile
$(RM) *.orig *.rej *~ TAGS *.bak
bindist:
strip $(LYX_BINNAME)
$(LN) $(absbuilddir)/$(LYX_BINNAME) $(bindistdir)/bin/$(LYX_BINNAME)
# Make all object files depend on config.h
$(OBJS): config.h
# DO NOT DELETE THIS LINE -- make depend depends on it.
main.o: main.C lyx_main.h gettext.h LString.h filetools.h error.h
lyx_main.o: lyx_main.C version.h lyx_main.h lyx_gui.h lyx_gui_misc.h \
LString.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h lyxinset.h definitions.h gettext.h lyxfont.h \
lyxlex.h lyxscreen.h lyxdraw.h combox.h pathstack.h filetools.h \
error.h bufferlist.h buffer.h undo.h lyxparagraph.h table.h \
textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h FileInfo.h \
lastfiles.h intl.h form1.h lyxserver.h
lyx_gui.o: lyx_gui.C lyx_gui.h combox.h lyx.h form1.h layout_forms.h \
bufferparams.h LString.h lyxlex.h vspace.h Spacing.h Bullet.h \
insetquotes.h lyxinset.h definitions.h gettext.h lyxfont.h \
lyxscreen.h lyxdraw.h print_form.h tex-strings.h lyx_main.h \
latexoptions.h error.h version.h LyXView.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
menus.h lyxserver.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h lyx_gui_misc.h lyx_cb.h lyxlookup.h \
bufferlist.h ../images/banner.xpm
lyx.o: lyx.C lyx_gui_misc.h LString.h gettext.h lyx.h
lyx_cb.o: lyx_cb.C LString.h lyx_main.h lyx.h layout_forms.h \
bufferparams.h lyxlex.h vspace.h Spacing.h Bullet.h insetquotes.h \
lyxinset.h definitions.h gettext.h lyxfont.h lyxscreen.h lyxdraw.h \
bullet_forms.h print_form.h form1.h spellchecker.h version.h lyx_cb.h \
credits.h insetref.h insetcommand.h buffer.h undo.h lyxparagraph.h \
table.h textutils.h insetbib.h BufferView.h lyxvc.h latexoptions.h \
texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h insetlatex.h \
insetlabel.h insetinfo.h inseturl.h insetspecialchar.h \
figinset.h LaTeXFeatures.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h minibuffer.h combox.h bufferlist.h error.h \
filetools.h pathstack.h filedlg.h lyx_gui_misc.h LyXView.h menus.h \
lastfiles.h FileInfo.h syscall.h lyxlib.h lyxserver.h FontLoader.h \
lyxrc.h toolbar.h
lyxfr0.o: lyxfr0.C LString.h lyx_main.h form1.h lyxfr0.h lyxfr1.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
error.h lyxtext.h layout.h Spacing.h lyxrow.h undo.h lyxparagraph.h \
table.h textutils.h vspace.h insetbib.h insetcommand.h lyxcursor.h \
LyXView.h lyx.h buffer.h BufferView.h lyxvc.h latexoptions.h \
bufferparams.h Bullet.h insetquotes.h texrow.h menus.h
lyxfr1.o: lyxfr1.C LString.h lyx_main.h form1.h lyxfr0.h lyxfr1.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
error.h lyxtext.h layout.h Spacing.h lyxrow.h undo.h lyxparagraph.h \
table.h textutils.h vspace.h insetbib.h insetcommand.h lyxcursor.h \
LyXView.h lyx.h buffer.h BufferView.h lyxvc.h latexoptions.h \
bufferparams.h Bullet.h insetquotes.h texrow.h menus.h lyx_gui_misc.h
inset.o: inset.C lyxinset.h definitions.h gettext.h lyxfont.h \
LString.h lyxlex.h lyxscreen.h lyxdraw.h error.h
lyxfont.o: lyxfont.C gettext.h definitions.h lyxfont.h LString.h \
error.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h lyxinset.h lyxlex.h lyxscreen.h lyxdraw.h \
combox.h FontLoader.h
texrow.o: texrow.C texrow.h lyxparagraph.h definitions.h lyxinset.h \
gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
textutils.h vspace.h insetbib.h insetcommand.h error.h
paragraph.o: paragraph.C lyxparagraph.h definitions.h lyxinset.h \
gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
textutils.h vspace.h insetbib.h insetcommand.h lyxrc.h toolbar.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h combox.h \
layout.h Spacing.h tex-strings.h bufferparams.h Bullet.h \
insetquotes.h FileInfo.h error.h LaTeXFeatures.h insetinclude.h \
buffer.h undo.h BufferView.h lyxvc.h latexoptions.h texrow.h \
lyxtext.h lyxrow.h lyxcursor.h filetools.h lyx_gui_misc.h
layout.o: layout.C definitions.h layout.h lyxlex.h LString.h lyxfont.h \
gettext.h Spacing.h filetools.h error.h lyx_gui_misc.h
screen.o: screen.C lyxscreen.h lyxdraw.h lyxfont.h LString.h gettext.h \
lyxtext.h definitions.h layout.h lyxlex.h Spacing.h lyxrow.h undo.h \
lyxparagraph.h lyxinset.h table.h textutils.h vspace.h insetbib.h \
insetcommand.h lyxcursor.h
text.o: text.C layout.h definitions.h lyxlex.h LString.h lyxfont.h \
gettext.h Spacing.h lyxparagraph.h lyxinset.h lyxscreen.h lyxdraw.h \
table.h textutils.h vspace.h insetbib.h insetcommand.h lyxtext.h \
lyxrow.h undo.h lyxcursor.h lyx_gui_misc.h bufferparams.h Bullet.h \
insetquotes.h buffer.h BufferView.h lyxvc.h latexoptions.h texrow.h
text2.o: text2.C LString.h lyxparagraph.h definitions.h lyxinset.h \
gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
textutils.h vspace.h insetbib.h insetcommand.h inseterror.h layout.h \
Spacing.h LyXView.h lyx.h buffer.h undo.h BufferView.h lyxvc.h \
latexoptions.h bufferparams.h Bullet.h insetquotes.h texrow.h \
lyxtext.h lyxrow.h lyxcursor.h menus.h lyx_cb.h minibuffer.h \
lyx_gui_misc.h
spellchecker.o: spellchecker.C LString.h sp_form.h spellchecker.h \
lyx_main.h buffer.h undo.h definitions.h lyxparagraph.h lyxinset.h \
gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h lyxrc.h toolbar.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h combox.h \
lyx_gui_misc.h
kbmap.o: kbmap.C gettext.h kbmap.h error.h LString.h
bmtable.o: bmtable.C bmtable.h
math_symbols.o: math_symbols.C lyx_main.h buffer.h undo.h \
definitions.h lyxparagraph.h lyxinset.h gettext.h lyxfont.h LString.h \
lyxlex.h lyxscreen.h lyxdraw.h table.h textutils.h vspace.h \
insetbib.h insetcommand.h BufferView.h lyxvc.h latexoptions.h \
bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
layout.h lyxrow.h lyxcursor.h minibuffer.h lyxrc.h toolbar.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h combox.h \
lyxlib.h LyXView.h lyx.h menus.h error.h formula.h math_panel.h \
bmtable.h math_forms.h math_parser.h symbol_def.h ../images/greek.xbm \
../images/arrows.xbm ../images/brel.xbm ../images/bop.xbm \
../images/misc.xbm ../images/varsz.xbm ../images/dots.xbm
lyxfunc.o: lyxfunc.C definitions.h lyxlookup.h kbmap.h lyxfunc.h \
commandtags.h tex-accent.h LyXAction.h lyxinset.h gettext.h lyxfont.h \
LString.h lyxlex.h lyxscreen.h lyxdraw.h bufferlist.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
error.h lyxserver.h lyx.h intl.h form1.h lyx_main.h lyx_cb.h \
insetlatex.h inseturl.h insetlatexaccent.h insettoc.h insetlof.h \
insetloa.h insetlot.h insetref.h insetparent.h formulamacro.h \
formula.h toolbar.h combox.h spellchecker.h minibuffer.h LyXView.h \
menus.h insetindex.h insetinclude.h filetools.h filedlg.h \
lyx_gui_misc.h FileInfo.h lyxrc.h trans_mgr.h trans_decl.h \
ImportLaTeX.h
credits.o: credits.C credits.h credits_form.h LString.h filetools.h \
error.h lyx_gui_misc.h gettext.h
menus.o: menus.C menus.h lyx.h lyx_cb.h version.h lyxfont.h LString.h \
gettext.h lyx_main.h lyxfunc.h commandtags.h kbmap.h tex-accent.h \
LyXAction.h lyxinset.h definitions.h lyxlex.h lyxscreen.h lyxdraw.h \
spellchecker.h filetools.h error.h LyXView.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
lastfiles.h bufferlist.h lyx_gui_misc.h minibuffer.h intl.h form1.h \
lyxrc.h toolbar.h combox.h
intl.o: intl.C intl.h form1.h tex-strings.h combox.h lyx_gui_misc.h \
LString.h error.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h lyxinset.h definitions.h gettext.h lyxfont.h \
lyxlex.h lyxscreen.h lyxdraw.h trans_mgr.h trans_decl.h
form1.o: form1.C lyx_gui_misc.h LString.h gettext.h form1.h
credits_form.o: credits_form.C lyx_gui_misc.h LString.h gettext.h \
credits_form.h
layout_forms.o: layout_forms.C lyx_gui_misc.h LString.h gettext.h \
layout_forms.h bufferparams.h lyxlex.h vspace.h Spacing.h Bullet.h \
insetquotes.h lyxinset.h definitions.h lyxfont.h lyxscreen.h \
lyxdraw.h
print_form.o: print_form.C lyx_gui_misc.h LString.h gettext.h \
print_form.h
math_macro.o: math_macro.C LString.h math_macro.h math_defs.h array.h \
math_iter.h math_inset.h symbol_def.h error.h
figinset.o: figinset.C form1.h figinset.h buffer.h undo.h \
definitions.h lyxparagraph.h lyxinset.h gettext.h lyxfont.h LString.h \
lyxlex.h lyxscreen.h lyxdraw.h table.h textutils.h vspace.h \
insetbib.h insetcommand.h BufferView.h lyxvc.h latexoptions.h \
bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
layout.h lyxrow.h lyxcursor.h LaTeXFeatures.h lyx.h lyx_main.h \
filedlg.h filetools.h error.h LyXView.h menus.h lyxrc.h toolbar.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h combox.h \
lyx_gui_misc.h FileInfo.h
toolbar.o: toolbar.C lyx_main.h lyx_gui_misc.h LString.h lyx.h \
toolbar.h lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h \
lyxinset.h definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h \
lyxdraw.h combox.h error.h lyx_cb.h LyXView.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
menus.h ../images/cut.xpm ../images/emph.xpm ../images/fig.xpm \
../images/foot.xpm ../images/math.xpm ../images/depth.xpm \
../images/margin.xpm ../images/melt.xpm ../images/copy.xpm \
../images/noun.xpm ../images/paste.xpm ../images/free.xpm \
../images/tab.xpm ../images/tex.xpm ../images/open.xpm \
../images/close.xpm ../images/save.xpm ../images/print1.xpm \
../images/quit.xpm ../images/unknown.xpm ../images/bold_bw.xpm \
../images/make_ascii_bw.xpm ../images/make_latex_bw.xpm \
../images/run_latex_bw.xpm ../images/sans_bw.xpm \
../images/view_dvi_bw.xpm ../images/view_ps_bw.xpm
formula.o: formula.C formula.h definitions.h lyxinset.h gettext.h \
lyxfont.h LString.h lyxlex.h lyxscreen.h lyxdraw.h commandtags.h \
math_cursor.h math_iter.h math_defs.h array.h math_inset.h \
symbol_def.h math_parser.h lyx_main.h bufferlist.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
error.h lyx_cb.h minibuffer.h LaTeXFeatures.h
math_hash.o: math_hash.C math_defs.h array.h math_parser.h \
symbol_def.h
math_inset.o: math_inset.C math_iter.h math_defs.h array.h \
math_inset.h symbol_def.h LString.h
math_parser.o: math_parser.C math_parser.h symbol_def.h math_iter.h \
math_defs.h array.h math_inset.h LString.h math_macro.h error.h
math_write.o: math_write.C LString.h math_inset.h math_defs.h array.h \
symbol_def.h math_iter.h math_parser.h
math_draw.o: math_draw.C math_cursor.h math_iter.h math_defs.h array.h \
math_inset.h symbol_def.h LString.h math_parser.h
latexoptions.o: latexoptions.C lyx_gui_misc.h LString.h gettext.h \
latexoptions.h
texoptions.o: texoptions.C latexoptions.h lyx_cb.h lyx_main.h buffer.h \
undo.h definitions.h lyxparagraph.h lyxinset.h gettext.h lyxfont.h \
LString.h lyxlex.h lyxscreen.h lyxdraw.h table.h textutils.h vspace.h \
insetbib.h insetcommand.h BufferView.h lyxvc.h bufferparams.h \
Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
lyxcursor.h
table.o: table.C table.h definitions.h lyxlex.h LString.h vspace.h \
layout.h lyxfont.h gettext.h Spacing.h
buffer.o: buffer.C definitions.h buffer.h undo.h lyxparagraph.h \
lyxinset.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
bufferlist.h error.h lyx_main.h lyx_gui_misc.h lyxrc.h toolbar.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h combox.h \
tex-strings.h lyx_cb.h minibuffer.h formulamacro.h \
formula.h inseterror.h insetlabel.h insetref.h insetinfo.h \
insetlatex.h inseturl.h insetlatexaccent.h insetindex.h \
insetinclude.h filetools.h insettoc.h insetlof.h insetlot.h \
insetloa.h insetparent.h insetspecialchar.h figinset.h form1.h \
LaTeXFeatures.h pathstack.h LaTeX.h DepTable.h Chktex.h LyXView.h \
lyx.h menus.h syscall.h lyxlib.h FileInfo.h
lastfiles.o: lastfiles.C lyxlex.h LString.h FileInfo.h lastfiles.h \
filetools.h error.h
sp_form.o: sp_form.C lyx_gui_misc.h LString.h gettext.h sp_form.h
lyx_sty.o: lyx_sty.C lyx_sty.h LString.h
math_panel.o: math_panel.C math_panel.h bmtable.h math_forms.h \
symbol_def.h formula.h definitions.h lyxinset.h gettext.h lyxfont.h \
LString.h lyxlex.h lyxscreen.h lyxdraw.h lyxfunc.h commandtags.h \
kbmap.h tex-accent.h LyXAction.h ../images/delim.xbm \
../images/delim0.xpm ../images/delim.xpm ../images/deco.xbm \
../images/deco.xpm ../images/space.xpm ../images/sqrt.xpm \
../images/frac.xpm ../images/matrix.xpm ../images/equation.xpm
math_iter.o: math_iter.C math_iter.h math_defs.h array.h math_inset.h \
symbol_def.h LString.h error.h
lyxrc.o: lyxrc.C error.h LString.h lyxrc.h toolbar.h lyxfunc.h \
commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
combox.h lyxserver.h lyx_main.h intl.h form1.h tex-strings.h \
pathstack.h filetools.h lyxtext.h layout.h Spacing.h lyxrow.h undo.h \
lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
lyxcursor.h
lyxlex.o: lyxlex.C lyxlex.h LString.h error.h filetools.h
combox.o: combox.C combox.h error.h LString.h
minibuffer.o: minibuffer.C filetools.h error.h LString.h lyx_main.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
minibuffer.h LyXView.h lyx.h buffer.h undo.h lyxparagraph.h table.h \
textutils.h vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h menus.h
math_delim.o: math_delim.C symbol_def.h math_inset.h math_defs.h \
array.h LString.h
math_forms.o: math_forms.C lyx_gui_misc.h LString.h gettext.h \
math_panel.h bmtable.h math_forms.h
math_cursor.o: math_cursor.C math_inset.h math_defs.h array.h \
symbol_def.h LString.h math_parser.h math_cursor.h math_iter.h \
math_macro.h error.h
math_utils.o: math_utils.C math_defs.h array.h symbol_def.h
lyx_sendfax.o: lyx_sendfax.C lyx_gui_misc.h LString.h gettext.h \
lyx_sendfax.h
lyx_sendfax_main.o: lyx_sendfax_main.C error.h LString.h lyx_sendfax.h \
lyx_main.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h lyxinset.h definitions.h gettext.h lyxfont.h \
lyxlex.h lyxscreen.h lyxdraw.h combox.h filetools.h lyx_gui_misc.h \
syscall.h
LString.o: LString.C LString.h
bufferparams.o: bufferparams.C bufferparams.h LString.h lyxlex.h \
vspace.h Spacing.h Bullet.h insetquotes.h lyxinset.h definitions.h \
gettext.h lyxfont.h lyxscreen.h lyxdraw.h tex-strings.h layout.h \
error.h lyxlib.h
pathstack.o: pathstack.C pathstack.h LString.h filetools.h error.h \
gettext.h lyx_gui_misc.h
filetools.o: filetools.C filetools.h error.h LString.h lyx_gui_misc.h \
FileInfo.h pathstack.h gettext.h
filedlg.o: filedlg.C lyx_gui_misc.h LString.h FileInfo.h gettext.h \
filetools.h error.h filedlg.h form1.h definitions.h
error.o: error.C error.h LString.h
insetquotes.o: insetquotes.C insetquotes.h lyxinset.h definitions.h \
gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h lyxdraw.h lyxlib.h \
error.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h combox.h buffer.h undo.h lyxparagraph.h \
table.h textutils.h vspace.h insetbib.h insetcommand.h BufferView.h \
lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h texrow.h \
lyxtext.h layout.h lyxrow.h lyxcursor.h LaTeXFeatures.h
insetlatex.o: insetlatex.C definitions.h insetlatex.h lyxinset.h \
gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h lyxdraw.h
BufferView.o: BufferView.C commandtags.h BufferView.h bufferlist.h \
buffer.h undo.h definitions.h lyxparagraph.h lyxinset.h gettext.h \
lyxfont.h LString.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
textutils.h vspace.h insetbib.h insetcommand.h lyxvc.h latexoptions.h \
bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
layout.h lyxrow.h lyxcursor.h error.h LyXView.h lyx.h menus.h \
lyxfunc.h kbmap.h tex-accent.h LyXAction.h minibuffer.h \
../images/up.xpm ../images/down.xpm lyx_gui_misc.h BackStack.h \
lyx_cb.h
Spacing.o: Spacing.C Spacing.h
PaperLayout.o: PaperLayout.C definitions.h layout_forms.h \
bufferparams.h LString.h lyxlex.h vspace.h Spacing.h Bullet.h \
insetquotes.h lyxinset.h gettext.h lyxfont.h lyxscreen.h lyxdraw.h \
lyx_main.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h combox.h filetools.h error.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h texrow.h lyxtext.h layout.h \
lyxrow.h lyxcursor.h minibuffer.h lyx_gui_misc.h
insetref.o: insetref.C insetref.h insetcommand.h lyxinset.h \
definitions.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h buffer.h undo.h lyxparagraph.h table.h textutils.h vspace.h \
insetbib.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
lyxcursor.h error.h lyx_gui_misc.h LyXView.h lyx.h menus.h lyxfunc.h \
commandtags.h kbmap.h tex-accent.h LyXAction.h
inseturl.o: inseturl.C inseturl.h gettext.h LString.h commandtags.h
insetlatexaccent.o: insetlatexaccent.C insetlatexaccent.h lyxinset.h \
definitions.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h error.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h combox.h
insetinfo.o: insetinfo.C insetinfo.h lyxinset.h definitions.h \
gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h lyxdraw.h \
lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
error.h lyx_gui_misc.h buffer.h undo.h BufferView.h lyxvc.h \
latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h
inseterror.o: inseterror.C definitions.h inseterror.h lyxinset.h \
gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h lyxdraw.h \
lyx_gui_misc.h
insetlabel.o: insetlabel.C insetlabel.h insetcommand.h lyxinset.h \
definitions.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h
bufferlist.o: bufferlist.C bufferlist.h buffer.h undo.h definitions.h \
lyxparagraph.h lyxinset.h gettext.h lyxfont.h LString.h lyxlex.h \
lyxscreen.h lyxdraw.h table.h textutils.h vspace.h insetbib.h \
insetcommand.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
lyxcursor.h error.h lyx_main.h minibuffer.h FileInfo.h filetools.h \
lyx_gui_misc.h lastfiles.h lyxrc.h toolbar.h lyxfunc.h commandtags.h \
kbmap.h tex-accent.h LyXAction.h combox.h lyx_cb.h
lyx_gui_misc.o: lyx_gui_misc.C lyx_gui_misc.h LString.h BufferView.h \
bibforms.h buffer.h undo.h definitions.h lyxparagraph.h lyxinset.h \
gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h table.h \
textutils.h vspace.h insetbib.h insetcommand.h lyxvc.h latexoptions.h \
bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
layout.h lyxrow.h lyxcursor.h bullet_forms.h form1.h include_form.h \
layout_forms.h lyx.h lyx_cb.h lyx_main.h math_forms.h minibuffer.h \
print_form.h sp_form.h
vspace.o: vspace.C lyx_main.h buffer.h undo.h definitions.h \
lyxparagraph.h lyxinset.h gettext.h lyxfont.h LString.h lyxlex.h \
lyxscreen.h lyxdraw.h table.h textutils.h vspace.h insetbib.h \
insetcommand.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
lyxcursor.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h combox.h
LaTeX.o: LaTeX.C filetools.h error.h LString.h LaTeX.h DepTable.h \
lyxlex.h FileInfo.h lyxlib.h gettext.h syscall.h syscontr.h \
pathstack.h bufferlist.h buffer.h undo.h definitions.h lyxparagraph.h \
lyxinset.h lyxfont.h lyxscreen.h lyxdraw.h table.h textutils.h \
vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h minibuffer.h
LyXView.o: LyXView.C LyXView.h lyx.h buffer.h undo.h definitions.h \
lyxparagraph.h lyxinset.h gettext.h lyxfont.h LString.h lyxlex.h \
lyxscreen.h lyxdraw.h table.h textutils.h vspace.h insetbib.h \
insetcommand.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
lyxcursor.h menus.h lyx_main.h lyxlookup.h toolbar.h lyxfunc.h \
commandtags.h kbmap.h tex-accent.h LyXAction.h combox.h minibuffer.h \
../images/lyx.xpm error.h layout_forms.h intl.h form1.h lyxrc.h \
filetools.h
FileInfo.o: FileInfo.C FileInfo.h LString.h
insetcommand.o: insetcommand.C insetcommand.h lyxinset.h definitions.h \
gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h lyxdraw.h error.h
insetbib.o: insetbib.C insetbib.h insetcommand.h lyxinset.h \
definitions.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h combox.h buffer.h undo.h lyxparagraph.h table.h textutils.h \
vspace.h BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h \
Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
lyxcursor.h error.h lyx_gui_misc.h bibforms.h filetools.h
insetindex.o: insetindex.C insetindex.h insetcommand.h lyxinset.h \
definitions.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h buffer.h undo.h lyxparagraph.h table.h textutils.h vspace.h \
insetbib.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
lyxcursor.h error.h LaTeXFeatures.h lyx_gui_misc.h
LyXAction.o: LyXAction.C LyXAction.h commandtags.h error.h LString.h \
gettext.h
lyxsum.o: lyxsum.C
DepTable.o: DepTable.C DepTable.h LString.h lyxlib.h gettext.h \
filetools.h error.h
lyxserver.o: lyxserver.C lyxserver.h LString.h lyxfunc.h commandtags.h \
kbmap.h tex-accent.h LyXAction.h lyxinset.h definitions.h gettext.h \
lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h lyx_main.h error.h
LaTeXLog.o: LaTeXLog.C buffer.h undo.h definitions.h lyxparagraph.h \
lyxinset.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
lyx_main.h filetools.h error.h pathstack.h lyxrc.h toolbar.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h combox.h
formulamacro.o: formulamacro.C formulamacro.h formula.h definitions.h \
lyxinset.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h commandtags.h math_cursor.h math_iter.h math_defs.h array.h \
math_inset.h symbol_def.h math_parser.h math_macro.h lyx_main.h \
bufferlist.h buffer.h undo.h lyxparagraph.h table.h textutils.h \
vspace.h insetbib.h insetcommand.h BufferView.h lyxvc.h \
latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h error.h lyx_cb.h
insetinclude.o: insetinclude.C filedlg.h LString.h form1.h \
insetinclude.h insetcommand.h lyxinset.h definitions.h gettext.h \
lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h vspace.h insetbib.h BufferView.h \
lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
filetools.h error.h bufferlist.h lyxrc.h toolbar.h lyxfunc.h \
commandtags.h kbmap.h tex-accent.h LyXAction.h combox.h LyXView.h \
lyx.h menus.h LaTeXFeatures.h lyx_gui_misc.h include_form.h \
FileInfo.h
syscall.o: syscall.C syscall.h syscontr.h
syscontr.o: syscontr.C syscontr.h syscall.h
syssingleton.o: syssingleton.C syscontr.h
TableLayout.o: TableLayout.C definitions.h layout_forms.h \
bufferparams.h LString.h lyxlex.h vspace.h Spacing.h Bullet.h \
insetquotes.h lyxinset.h gettext.h lyxfont.h lyxscreen.h lyxdraw.h \
lyx_main.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h combox.h filetools.h error.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h texrow.h lyxtext.h layout.h \
lyxrow.h lyxcursor.h lyx_gui_misc.h
insettoc.o: insettoc.C insettoc.h insetcommand.h lyxinset.h \
definitions.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h buffer.h undo.h lyxparagraph.h table.h textutils.h vspace.h \
insetbib.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
lyxcursor.h bufferlist.h error.h commandtags.h lyxfunc.h kbmap.h \
tex-accent.h LyXAction.h LyXView.h lyx.h menus.h
insetlof.o: insetlof.C
insetlot.o: insetlot.C
lyxdraw.o: lyxdraw.C lyxdraw.h lyxfont.h LString.h gettext.h error.h
LaTeXFeatures.o: LaTeXFeatures.C LString.h error.h lyx_sty.h lyxrc.h \
toolbar.h lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h \
lyxinset.h definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h \
lyxdraw.h combox.h LaTeXFeatures.h bufferparams.h vspace.h Spacing.h \
Bullet.h insetquotes.h layout.h
lyxvc.o: lyxvc.C lyxvc.h LString.h latexoptions.h error.h \
lyx_gui_misc.h bufferlist.h buffer.h undo.h definitions.h \
lyxparagraph.h lyxinset.h gettext.h lyxfont.h lyxlex.h lyxscreen.h \
lyxdraw.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
BufferView.h bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h \
lyxtext.h layout.h lyxrow.h lyxcursor.h syscall.h pathstack.h \
filetools.h FileInfo.h LyXView.h lyx.h menus.h lyxfunc.h \
commandtags.h kbmap.h tex-accent.h LyXAction.h
trans.o: trans.C LyXView.h lyx.h buffer.h undo.h definitions.h \
lyxparagraph.h lyxinset.h gettext.h lyxfont.h LString.h lyxlex.h \
lyxscreen.h lyxdraw.h table.h textutils.h vspace.h insetbib.h \
insetcommand.h BufferView.h lyxvc.h latexoptions.h bufferparams.h \
Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h \
lyxcursor.h menus.h trans.h tex-accent.h commandtags.h trans_decl.h \
filetools.h error.h tex-strings.h trans_mgr.h
tex-strings.o: tex-strings.C tex-strings.h
tex-accent.o: tex-accent.C tex-accent.h commandtags.h LString.h
ParagraphExtra.o: ParagraphExtra.C definitions.h layout_forms.h \
bufferparams.h LString.h lyxlex.h vspace.h Spacing.h Bullet.h \
insetquotes.h lyxinset.h gettext.h lyxfont.h lyxscreen.h lyxdraw.h \
minibuffer.h buffer.h undo.h lyxparagraph.h table.h textutils.h \
insetbib.h insetcommand.h BufferView.h lyxvc.h latexoptions.h \
texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h
FontInfo.o: FontInfo.C FontInfo.h LString.h error.h lyxrc.h toolbar.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
combox.h
FontLoader.o: FontLoader.C gettext.h FontLoader.h lyxfont.h LString.h \
FontInfo.h error.h lyxrc.h toolbar.h lyxfunc.h commandtags.h kbmap.h \
tex-accent.h LyXAction.h lyxinset.h definitions.h lyxlex.h \
lyxscreen.h lyxdraw.h combox.h minibuffer.h
insetparent.o: insetparent.C insetparent.h insetcommand.h lyxinset.h \
definitions.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h filetools.h error.h BufferView.h LyXView.h lyx.h buffer.h \
undo.h lyxparagraph.h table.h textutils.h vspace.h insetbib.h lyxvc.h \
latexoptions.h bufferparams.h Spacing.h Bullet.h insetquotes.h \
texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h menus.h lyxfunc.h \
commandtags.h kbmap.h tex-accent.h LyXAction.h
LyXSendto.o: LyXSendto.C print_form.h lyx_main.h lyxrc.h toolbar.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
definitions.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h combox.h filetools.h error.h pathstack.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h \
lyx_gui_misc.h syscall.h lyx_cb.h
Bullet.o: Bullet.C Bullet.h LString.h
bullet_forms.o: bullet_forms.C lyx_gui_misc.h LString.h gettext.h \
bullet_forms.h bmtable.h filetools.h error.h
bullet_forms_cb.o: bullet_forms_cb.C bullet_forms.h bmtable.h buffer.h \
undo.h definitions.h lyxparagraph.h lyxinset.h gettext.h lyxfont.h \
LString.h lyxlex.h lyxscreen.h lyxdraw.h table.h textutils.h vspace.h \
insetbib.h insetcommand.h BufferView.h lyxvc.h latexoptions.h \
bufferparams.h Spacing.h Bullet.h insetquotes.h texrow.h lyxtext.h \
layout.h lyxrow.h lyxcursor.h filetools.h error.h lyx_gui_misc.h
insetloa.o: insetloa.C LaTeXFeatures.h insetloa.h insetcommand.h \
lyxinset.h definitions.h gettext.h lyxfont.h LString.h lyxlex.h \
lyxscreen.h lyxdraw.h insetlof.h insetlot.h
trans_mgr.o: trans_mgr.C trans_mgr.h tex-accent.h commandtags.h \
trans_decl.h LString.h trans.h lyxtext.h definitions.h layout.h \
lyxlex.h lyxfont.h gettext.h Spacing.h lyxrow.h undo.h lyxparagraph.h \
lyxinset.h lyxscreen.h lyxdraw.h table.h textutils.h vspace.h \
insetbib.h insetcommand.h lyxcursor.h error.h chset.h \
insetlatexaccent.h BufferView.h buffer.h lyxvc.h latexoptions.h \
bufferparams.h Bullet.h insetquotes.h texrow.h lyxrc.h toolbar.h \
lyxfunc.h kbmap.h LyXAction.h combox.h
chset.o: chset.C chset.h LString.h filetools.h error.h lyxlex.h
Chktex.o: Chktex.C Chktex.h LString.h LaTeX.h DepTable.h filetools.h \
error.h lyxlex.h FileInfo.h syscall.h syscontr.h pathstack.h \
gettext.h
insetspecialchar.o: insetspecialchar.C insetspecialchar.h lyxinset.h \
definitions.h gettext.h lyxfont.h LString.h lyxlex.h lyxscreen.h \
lyxdraw.h error.h
lyxlookup.o: lyxlookup.C error.h LString.h
ImportLaTeX.o: ImportLaTeX.C ImportLaTeX.h LString.h lyxrc.h toolbar.h \
lyxfunc.h commandtags.h kbmap.h tex-accent.h LyXAction.h lyxinset.h \
definitions.h gettext.h lyxfont.h lyxlex.h lyxscreen.h lyxdraw.h \
combox.h syscall.h filetools.h error.h bufferlist.h buffer.h undo.h \
lyxparagraph.h table.h textutils.h vspace.h insetbib.h insetcommand.h \
BufferView.h lyxvc.h latexoptions.h bufferparams.h Spacing.h Bullet.h \
insetquotes.h texrow.h lyxtext.h layout.h lyxrow.h lyxcursor.h
[ Dauer der Verarbeitung: 0.17 Sekunden
(vorverarbeitet)
]
|