]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Makefile.am
tex2lyx roundtrip: Ignore the lyx-version which created
[lyx.git] / src / tex2lyx / Makefile.am
index b65e0e4930f55ffe70d562e7ee2a984bd58bd8ea..9ebbdc0fde7985ed466f3243f5c1d0402af51cf4 100644 (file)
 include $(top_srcdir)/config/common.am
 
-EXTRA_DIST = tex2lyx.man $(TEST_FILES)
-EXTRA_DIST += pch.h
+EXTRA_DIST = TODO.txt tex2lyx.1in $(TEST_FILES) $(TEST_RESULTS) pch.h
 
-DISTCLEANFILES += tex2lyx.1
-
-#noinst_LTLIBRARIES = libtexparser.la
+#noinst_LIBRARIES = libtexparser.a
 #
-#libtexparser_la_SOURCES = \
+#libtexparser_a_SOURCES = \
 #      Parser.cpp \
 #      Parser.h
 #
-#tex2lyx_LDADD = libtexparser.la
+#tex2lyx_LDADD = libtexparser.a
 
 man_MANS = tex2lyx.1
 
 bin_PROGRAMS = tex2lyx
 
-DEFAULT_INCLUDES = 
+DEFAULT_INCLUDES =
 
-AM_CPPFLAGS += -DTEX2LYX $(PCH_FLAGS) -I$(top_srcdir)/src/tex2lyx \
+AM_CPPFLAGS += -DTEX2LYX -DNO_LAYOUT_CSS $(PCH_FLAGS) -I$(top_srcdir)/src/tex2lyx \
        -I$(top_srcdir)/src -I$(top_builddir) $(BOOST_INCLUDES)
 
 TEST_FILES = \
+       test/runtests.py \
        test/box-color-size-space-align.tex \
+       test/CJK.tex \
+       test/CJKutf8.tex \
+       test/DummyDocument.tex \
+       test/Dummy~Document.tex \
        test/foo.eps \
        test/foo.png \
        test/test-insets.tex \
        test/test.ltx \
-       test/test-structure.tex
+       test/test-modules.tex \
+       test/test-refstyle-theorems.tex \
+       test/test-structure.tex \
+       test/verbatim.tex \
+       test/XeTeX-polyglossia.tex \
+       test/xfigtest.fig \
+       test/xfigtest.pstex \
+       test/xfigtest.pstex_t
+
+TEST_RESULTS = \
+       test/box-color-size-space-align.lyx.lyx \
+       test/CJK.lyx.lyx \
+       test/CJKutf8.lyx.lyx \
+       test/DummyDocument.lyx.lyx \
+       test/Dummy~Document.lyx.lyx \
+       test/test-insets.lyx.lyx \
+       test/test.lyx.lyx \
+       test/test-modules.lyx.lyx \
+       test/test-refstyle-theorems.lyx.lyx \
+       test/test-structure.lyx.lyx \
+       test/verbatim.lyx.lyx \
+       test/XeTeX-polyglossia.lyx.lyx
+
+TESTS = test/runtests.py
+updatetests: tex2lyx
+       $(PYTHON) "$(srcdir)/test/runtests.py" ./tex2lyx "$(top_srcdir)/lib/scripts" "$(srcdir)/test"
 
 LINKED_FILES = \
+       ../Author.cpp \
+       ../Color.cpp \
+       ../Counters.cpp \
+       ../Encoding.cpp \
        ../FloatList.cpp \
        ../Floating.cpp \
-       ../Counters.cpp \
+       ../FontInfo.cpp \
+       ../graphics/GraphicsParams.cpp \
+       ../insets/ExternalTemplate.cpp \
+       ../insets/ExternalTransforms.cpp \
        ../insets/InsetLayout.cpp \
-       ../LayoutFile.h \
-       ../Layout.h \
+       ../LaTeXPackages.cpp \
        ../Layout.cpp \
-       ../TextClass.cpp \
-       ../TextClass.h \
-       ../Lexer.cpp \
+       ../LayoutFile.cpp \
+       ../LayoutModuleList.cpp \
+       ../Length.cpp \
        ../lengthcommon.cpp \
-       ../Color.cpp \
-       ../Color.h
+       ../Lexer.cpp \
+       ../ModuleList.cpp \
+       ../Spacing.cpp \
+       ../TextClass.cpp \
+       ../version.cpp
 
 BUILT_SOURCES = $(PCH_FILE)
 
 tex2lyx_SOURCES = \
        $(LINKED_FILES) \
-       Spacing.h \
        boost.cpp \
        Context.cpp \
        Context.h \
-       Font.cpp \
-       Font.h \
-       gettext.cpp \
+       math.cpp \
        Parser.cpp \
        Parser.h \
+       Preamble.cpp \
+       Preamble.h \
+       table.cpp \
        tex2lyx.cpp \
        tex2lyx.h \
-       preamble.cpp \
-       math.cpp \
-       table.cpp \
        text.cpp
 
 tex2lyx_LDADD = \
-       $(top_builddir)/src/support/liblyxsupport.la \
-       $(LIBICONV) $(BOOST_LIBS) @LIBS@
+       $(top_builddir)/src/support/liblyxsupport.a \
+       $(LIBICONV) $(BOOST_LIBS) \
+       $(QT4_LIB) $(QT4_LDFLAGS) \
+       @LIBS@ $(LIBSHLWAPI) $(LIBPSAPI)
 
-tex2lyx.1:
-       cp -p $(srcdir)/tex2lyx.man tex2lyx.1
+if INSTALL_MACOSX
+tex2lyx_LDFLAGS = -framework AppKit
+endif