2003-02-11 12:37:27 +00:00
|
|
|
include $(top_srcdir)/config/common.am
|
|
|
|
|
2007-08-21 23:17:37 +00:00
|
|
|
EXTRA_DIST = tex2lyx.man test-structure.tex test-insets.tex
|
|
|
|
EXTRA_DIST += pch.h
|
2005-07-12 23:42:23 +00:00
|
|
|
|
2007-08-21 23:17:37 +00:00
|
|
|
DISTCLEANFILES += tex2lyx.1
|
2003-02-11 12:37:27 +00:00
|
|
|
|
2003-04-17 09:47:21 +00:00
|
|
|
#noinst_LTLIBRARIES = libtexparser.la
|
|
|
|
#
|
|
|
|
#libtexparser_la_SOURCES = \
|
2007-04-26 04:53:06 +00:00
|
|
|
# Parser.cpp \
|
|
|
|
# Parser.h
|
2003-04-17 09:47:21 +00:00
|
|
|
#
|
|
|
|
#tex2lyx_LDADD = libtexparser.la
|
2003-02-12 08:36:49 +00:00
|
|
|
|
2005-07-16 15:18:14 +00:00
|
|
|
man_MANS = tex2lyx.1
|
|
|
|
|
2003-02-11 12:37:27 +00:00
|
|
|
bin_PROGRAMS = tex2lyx
|
|
|
|
|
2007-08-21 23:17:37 +00:00
|
|
|
DEFAULT_INCLUDES =
|
|
|
|
|
2008-11-15 13:04:15 +00:00
|
|
|
AM_CPPFLAGS += -DTEX2LYX $(PCH_FLAGS) -I$(top_srcdir)/src/tex2lyx \
|
|
|
|
-I$(top_srcdir)/src -I$(top_builddir) $(BOOST_INCLUDES)
|
2007-08-21 23:17:37 +00:00
|
|
|
|
2008-11-15 13:04:15 +00:00
|
|
|
TEST_FILES = \
|
|
|
|
test/box-color-size-space-align.tex \
|
|
|
|
test/foo.eps \
|
|
|
|
test/foo.png \
|
|
|
|
test/test-insets.tex \
|
|
|
|
test/test.ltx \
|
|
|
|
test/test-structure.tex
|
2004-08-18 14:20:18 +00:00
|
|
|
|
2005-10-18 09:15:19 +00:00
|
|
|
LINKED_FILES = \
|
2007-08-21 23:17:37 +00:00
|
|
|
../FloatList.cpp \
|
|
|
|
../Floating.cpp \
|
|
|
|
../Counters.cpp \
|
2008-02-22 10:16:18 +00:00
|
|
|
../insets/InsetLayout.cpp \
|
2008-03-19 19:37:35 +00:00
|
|
|
../LayoutFile.h \
|
2007-08-21 23:17:37 +00:00
|
|
|
../Layout.h \
|
|
|
|
../Layout.cpp \
|
|
|
|
../TextClass.cpp \
|
|
|
|
../TextClass.h \
|
2007-08-27 08:36:18 +00:00
|
|
|
../Lexer.cpp \
|
2008-03-20 13:20:18 +00:00
|
|
|
../lengthcommon.cpp \
|
2007-08-27 08:36:18 +00:00
|
|
|
../Color.cpp \
|
|
|
|
../Color.h
|
2003-07-26 00:15:38 +00:00
|
|
|
|
2007-08-21 23:17:37 +00:00
|
|
|
BUILT_SOURCES = $(PCH_FILE)
|
2005-07-12 23:42:23 +00:00
|
|
|
|
2003-02-12 08:36:49 +00:00
|
|
|
tex2lyx_SOURCES = \
|
2005-10-18 09:15:19 +00:00
|
|
|
$(LINKED_FILES) \
|
2003-07-26 00:15:38 +00:00
|
|
|
Spacing.h \
|
2007-04-25 18:04:04 +00:00
|
|
|
boost.cpp \
|
2007-04-26 04:53:06 +00:00
|
|
|
Context.cpp \
|
|
|
|
Context.h \
|
2007-04-29 18:17:15 +00:00
|
|
|
Font.cpp \
|
|
|
|
Font.h \
|
2007-04-26 04:41:58 +00:00
|
|
|
gettext.cpp \
|
2007-04-26 04:53:06 +00:00
|
|
|
Parser.cpp \
|
|
|
|
Parser.h \
|
|
|
|
tex2lyx.cpp \
|
2003-04-17 09:47:21 +00:00
|
|
|
tex2lyx.h \
|
2007-04-26 04:53:06 +00:00
|
|
|
preamble.cpp \
|
|
|
|
math.cpp \
|
|
|
|
table.cpp \
|
2007-04-26 04:41:58 +00:00
|
|
|
text.cpp
|
2003-07-26 00:15:38 +00:00
|
|
|
|
|
|
|
tex2lyx_LDADD = \
|
2007-08-10 22:33:54 +00:00
|
|
|
$(top_builddir)/src/support/liblyxsupport.la \
|
2007-09-21 07:18:21 +00:00
|
|
|
$(LIBICONV) $(BOOST_LIBS) @LIBS@
|
2003-07-26 00:15:38 +00:00
|
|
|
|
2005-07-16 15:18:14 +00:00
|
|
|
tex2lyx.1:
|
|
|
|
cp -p $(srcdir)/tex2lyx.man tex2lyx.1
|