2003-02-11 12:37:27 +00:00
|
|
|
include $(top_srcdir)/config/common.am
|
|
|
|
|
2009-03-19 22:31:22 +00:00
|
|
|
EXTRA_DIST = tex2lyx.1in $(TEST_FILES) pch.h
|
2003-02-11 12:37:27 +00:00
|
|
|
|
2008-11-15 17:45:55 +00:00
|
|
|
#noinst_LIBRARIES = libtexparser.a
|
2003-04-17 09:47:21 +00:00
|
|
|
#
|
2008-11-15 17:45:55 +00:00
|
|
|
#libtexparser_a_SOURCES = \
|
2007-04-26 04:53:06 +00:00
|
|
|
# Parser.cpp \
|
|
|
|
# Parser.h
|
2003-04-17 09:47:21 +00:00
|
|
|
#
|
2008-11-15 17:45:55 +00:00
|
|
|
#tex2lyx_LDADD = libtexparser.a
|
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 \
|
2008-11-16 14:27:01 +00:00
|
|
|
test/DummyDocument.tex \
|
2008-11-15 13:04:15 +00:00
|
|
|
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 = \
|
2009-10-27 16:16:15 +00:00
|
|
|
../Color.cpp \
|
|
|
|
../Counters.cpp \
|
|
|
|
../Encoding.cpp \
|
2007-08-21 23:17:37 +00:00
|
|
|
../FloatList.cpp \
|
|
|
|
../Floating.cpp \
|
2009-10-27 16:16:15 +00:00
|
|
|
../FontInfo.cpp \
|
2008-02-22 10:16:18 +00:00
|
|
|
../insets/InsetLayout.cpp \
|
2007-08-21 23:17:37 +00:00
|
|
|
../Layout.cpp \
|
2009-02-21 16:45:37 +00:00
|
|
|
../LayoutModuleList.cpp \
|
2009-10-27 16:16:15 +00:00
|
|
|
../lengthcommon.cpp \
|
|
|
|
../Lexer.cpp \
|
2009-02-11 23:22:10 +00:00
|
|
|
../ModuleList.cpp \
|
2009-10-28 10:07:10 +00:00
|
|
|
../Spacing.cpp \
|
2007-08-21 23:17:37 +00:00
|
|
|
../TextClass.cpp \
|
2009-10-27 16:16:15 +00:00
|
|
|
../TextClass.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) \
|
2007-04-25 18:04:04 +00:00
|
|
|
boost.cpp \
|
2007-04-26 04:53:06 +00:00
|
|
|
Context.cpp \
|
|
|
|
Context.h \
|
2009-10-27 16:16:15 +00:00
|
|
|
math.cpp \
|
2007-04-26 04:53:06 +00:00
|
|
|
Parser.cpp \
|
|
|
|
Parser.h \
|
|
|
|
preamble.cpp \
|
|
|
|
table.cpp \
|
2009-10-27 16:16:15 +00:00
|
|
|
tex2lyx.cpp \
|
|
|
|
tex2lyx.h \
|
2007-04-26 04:41:58 +00:00
|
|
|
text.cpp
|
2003-07-26 00:15:38 +00:00
|
|
|
|
|
|
|
tex2lyx_LDADD = \
|
2008-11-15 17:45:55 +00:00
|
|
|
$(top_builddir)/src/support/liblyxsupport.a \
|
2009-07-12 14:49:30 +00:00
|
|
|
$(INTLLIBS) $(LIBICONV) $(BOOST_LIBS) \
|
2008-11-15 17:45:55 +00:00
|
|
|
$(QT4_LIB) $(QT4_LDFLAGS) \
|
2009-05-01 15:18:11 +00:00
|
|
|
@LIBS@ $(LIBSHLWAPI) $(LIBPSAPI)
|