lyx_mirror/src/tex2lyx/Makefile.am
Georg Baum d3c385de20 Next step towards a working roundtrip of files generated by LyX:
Try to recognize modules.
Again, this is needed because the complete LyX preamble is ignored.
It is not possible to recognize a module in all cases, but at least the simple
ones are handled now. As a prerequisite I also had to revive the filling of
known_environments. This has been removed (probably by accident) some time ago.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37306 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-23 21:10:20 +00:00

70 lines
1.3 KiB
Makefile

include $(top_srcdir)/config/common.am
EXTRA_DIST = TODO.txt tex2lyx.1in $(TEST_FILES) pch.h
#noinst_LIBRARIES = libtexparser.a
#
#libtexparser_a_SOURCES = \
# Parser.cpp \
# Parser.h
#
#tex2lyx_LDADD = libtexparser.a
man_MANS = tex2lyx.1
bin_PROGRAMS = tex2lyx
DEFAULT_INCLUDES =
AM_CPPFLAGS += -DTEX2LYX $(PCH_FLAGS) -I$(top_srcdir)/src/tex2lyx \
-I$(top_srcdir)/src -I$(top_builddir) $(BOOST_INCLUDES)
TEST_FILES = \
test/box-color-size-space-align.tex \
test/DummyDocument.tex \
test/foo.eps \
test/foo.png \
test/test-insets.tex \
test/test.ltx \
test/test-structure.tex
LINKED_FILES = \
../Color.cpp \
../Counters.cpp \
../Encoding.cpp \
../FloatList.cpp \
../Floating.cpp \
../FontInfo.cpp \
../insets/InsetLayout.cpp \
../Layout.cpp \
../LayoutFile.cpp \
../LayoutModuleList.cpp \
../lengthcommon.cpp \
../Lexer.cpp \
../ModuleList.cpp \
../Spacing.cpp \
../TextClass.cpp \
../TextClass.h
BUILT_SOURCES = $(PCH_FILE)
tex2lyx_SOURCES = \
$(LINKED_FILES) \
boost.cpp \
Context.cpp \
Context.h \
math.cpp \
Parser.cpp \
Parser.h \
preamble.cpp \
table.cpp \
tex2lyx.cpp \
tex2lyx.h \
text.cpp
tex2lyx_LDADD = \
$(top_builddir)/src/support/liblyxsupport.a \
$(INTLLIBS) $(LIBICONV) $(BOOST_LIBS) \
$(QT4_LIB) $(QT4_LDFLAGS) \
@LIBS@ $(LIBSHLWAPI) $(LIBPSAPI)